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

:root {
    --primary-red: #b88437;
    --primary-red1: #936724;

    --dark-bg: #1a1a1a;
    --dark-grey: #2d2d2d;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --text-grey: #666666;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: var(--dark-bg);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    gap: 30px;
    color: var(--white);
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.social-icons a {
    color: var(--white);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.get-started-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.get-started-btn:hover {
    background: #9a6f2d;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--dark-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo-x {
    color: var(--primary-red);
}

.logo-roof {
    color: var(--white);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}
/* 
.nav-menu a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
} */

.nav-menu a:hover {
    color: var(--primary-red);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-red {
    color: var(--primary-red);
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #9a6f2d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4);
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-circle:hover {
    background: #9a6f2d;
    transform: scale(1.1);
}

/* Quote Form */
.quote-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.quote-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--black);
}

.quote-form input,
.quote-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--primary-red);
}

.btn-submit {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #9a6f2d;
}

/* Statistics Section */
.statistics {
    background: var(--primary-red);
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.statistics .container {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.stat-box {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f5f5f5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.satisfaction-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.satisfaction-number {
    font-size: 42px;
    font-weight: 800;
}

.satisfaction-label {
    font-size: 14px;
    opacity: 0.9;
}

.satisfaction-box i {
    font-size: 24px;
    margin-left: auto;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.3;
}

.section-description {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.8;
}

.section-description.white {
    color: var(--white);
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-item > div {
    flex: 1;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
}

.about-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

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

.contact-label {
    font-size: 14px;
    color: var(--text-grey);
    font-weight: 400;
}

.contact-number {
    font-size: 18px;
    color: var(--black);
    font-weight: 700;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-grey);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-badge i {
    color: var(--primary-red);
}

.section-badge.white {
    color: var(--primary-red);
}

.section-badge.white i {
    color: var(--primary-red);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--dark-grey);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: 0;
}

.services-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.section-header .section-badge.white {
    color: var(--primary-red);
}

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

.section-header .section-description.white {
    color: var(--white);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 12px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('img2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.95;
    z-index: -1;
}

.why-choose-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-left {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card i {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.6;
}

.feature-card.award-card {
    background: var(--primary-red);
    color: var(--white);
}

.feature-card.award-card h4 {
    color: var(--white);
}

.feature-card.award-card p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card.award-card i {
    color: var(--white);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
}

.project-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    color: var(--black);
}

/* Building Trust Section */
.building-trust {
    padding: 100px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
}

.building-trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.building-trust-image-wrapper {
    position: relative;
}

.building-trust-image {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    background: var(--primary-red);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: var(--white);
}

.stat-number-red {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label-black {
    font-size: 14px;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-member h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.team-member p {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.team-social a:hover {
    background: #9a6f2d;
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-size: cover;
    background-position: center;
    opacity: 0.95;
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stars {
    color: var(--primary-red);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
}

.avatar-1 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.avatar-2 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.author-info h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-grey);
}

.cta-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cta-box {
    padding: 40px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-box-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.cta-box-red {
    background: var(--primary-red);
    color: var(--white);
}

.cta-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
}

.cta-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.cta-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }

.cta-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box button {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #eee;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-red);
}

.pricing-card.featured {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
}

.currency {
    color: var(--primary-red);
    font-size: 32px;
    vertical-align: top;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-grey);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-red);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fafafa;
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.faq-question i {
    color: var(--primary-red);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 15px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-date {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    padding: 20px 20px 10px;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 20px 15px;
    color: var(--black);
}

.blog-card p {
    font-size: 14px;
    color: var(--text-grey);
    margin: 0 20px 20px;
    line-height: 1.6;
}

.blog-card .read-more {
    padding: 0 20px 20px;
}

/* Get in Touch Section */
.get-in-touch {
    padding: 100px 0;
    background: var(--primary-red1);
    position: relative;
    overflow: hidden;
}

.get-in-touch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.get-in-touch-left {
    color: var(--white);
}

.get-in-touch-left h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.get-in-touch-left p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.house-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.house-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.house-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 31, 31, 0.6);
    border-radius: 10px;
    z-index: 1;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-info i {
    color: var(--primary-red);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #9a6f2d;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #9a6f2d;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .why-choose-content,
    .building-trust-content,
    .get-in-touch-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        display: none;
        padding: 20px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .projects-grid,
    .team-grid,
    .pricing-grid,
    .blog-grid,
    .testimonials-grid,
    .cta-boxes,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .statistics .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .quote-form {
        padding: 30px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.service-modal-content {
    position: relative;
    background: var(--white);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10002;
}

.service-modal-close:hover {
    background: var(--primary-red1);
    transform: rotate(90deg);
}

.service-modal-body {
    padding: 50px 40px 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.service-modal-body h2 {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-modal-body h3 {
    color: var(--dark-bg);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-modal-body p {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-modal-body ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.service-modal-body ul li {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-modal-body ul li:before {
    content: "•";
    color: var(--primary-red);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .service-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .service-modal-body {
        padding: 40px 25px 30px;
    }
    
    .service-modal-body h2 {
        font-size: 24px;
    }
    
    .service-modal-body h3 {
        font-size: 20px;
    }
    
    .service-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}
