/* ============================================
   SERVICES SECTION
   ============================================ */

/* Desktop Services */
.deluxe-construction-services {
    background-color: #ffffff; /* Services section background - white */
    padding: 100px 0;
}

.deluxe-construction-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.deluxe-construction-services-title {
    font-size: 46px;
    font-weight: 800;
    text-align: center;
    color: #333; /* Title color */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.deluxe-construction-services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d2b08b; /* Gold underline */
    border-radius: 2px;
}

.deluxe-construction-services-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666; /* Subtitle color */
    margin-bottom: 70px;
    margin-top: 30px;
}

.deluxe-construction-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.deluxe-construction-services-box {
    background-color: #f9f9f9; /* Service box background */
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.deluxe-construction-services-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #d2b08b; /* Gold border on hover */
}

.deluxe-construction-services-icon {
    font-size: 60px;
    color: #d2b08b; /* Icon color - gold */
    margin-bottom: 25px;
}

.deluxe-construction-services-box-title {
    font-size: 24px;
    font-weight: 700;
    color: #333; /* Box title color */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.deluxe-construction-services-box-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #d2b08b; /* Gold underline */
    border-radius: 2px;
}

.deluxe-construction-services-list {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.deluxe-construction-services-list-item {
    font-size: 17px;
    color: #666; /* List item color */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.deluxe-construction-services-list-item i {
    color: #d2b08b; /* Check icon color - gold */
    font-size: 16px;
}

.deluxe-construction-services-cta {
    text-align: center;
    margin-top: 20px;
}

.deluxe-construction-services-button {
    display: inline-block;
    background-color: black; /* Button background - black */
    color: white; /* Button text color - white */
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid black;
}

.deluxe-construction-services-button:hover {
    background-color: #1a1a1a; /* Button hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Tablet Services */
@media (max-width: 768px) {
    .deluxe-construction-services {
        padding: 80px 0;
    }
    
    .deluxe-construction-services-container {
        padding: 0 30px;
    }
    
    .deluxe-construction-services-title {
        font-size: 36px;
    }
    
    .deluxe-construction-services-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .deluxe-construction-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .deluxe-construction-services-box {
        padding: 40px 30px;
    }
    
    .deluxe-construction-services-box-title {
        font-size: 22px;
    }
}

/* Mobile Services */
@media (max-width: 480px) {
    .deluxe-construction-services {
        padding: 60px 0;
    }
    
    .deluxe-construction-services-container {
        padding: 0 20px;
    }
    
    .deluxe-construction-services-title {
        font-size: 28px;
    }
    
    .deluxe-construction-services-subtitle {
        font-size: 17px;
    }
    
    .deluxe-construction-services-icon {
        font-size: 50px;
    }
    
    .deluxe-construction-services-box-title {
        font-size: 20px;
    }
    
    .deluxe-construction-services-list-item {
        font-size: 16px;
    }
    
    .deluxe-construction-services-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

/* Desktop Why Choose */
.deluxe-construction-why-choose {
    background-color: #f5f5f5; /* Why choose section background - light grey */
    padding: 100px 0;
}

.deluxe-construction-why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.deluxe-construction-why-choose-title {
    font-size: 46px;
    font-weight: 800;
    color: #333; /* Title color */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.deluxe-construction-why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #d2b08b; /* Gold underline */
    border-radius: 2px;
}

.deluxe-construction-why-choose-text {
    font-size: 18px;
    color: #666; /* Text color */
    line-height: 1.8;
    margin-bottom: 40px;
    margin-top: 30px;
}

.deluxe-construction-why-choose-list {
    list-style: none;
}

.deluxe-construction-why-choose-list-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 20px;
    background-color: white; /* List item background */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deluxe-construction-why-choose-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.deluxe-construction-why-choose-list-item i {
    font-size: 32px;
    color: #d2b08b; /* Icon color - gold */
    margin-top: 5px;
}

.deluxe-construction-why-choose-list-content {
    display: flex;
    flex-direction: column;
}

.deluxe-construction-why-choose-list-content strong {
    font-size: 20px;
    color: #333; /* Strong text color */
    margin-bottom: 8px;
}

.deluxe-construction-why-choose-list-content span {
    font-size: 17px;
    color: #666; /* Span text color */
    line-height: 1.6;
}

.deluxe-construction-why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.deluxe-construction-why-choose-image-caption {
    font-size: 16px;
    color: #888; /* Caption color */
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Tablet Why Choose */
@media (max-width: 768px) {
    .deluxe-construction-why-choose {
        padding: 80px 0;
    }
    
    .deluxe-construction-why-choose-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .deluxe-construction-why-choose-title {
        font-size: 36px;
    }
    
    .deluxe-construction-why-choose-text {
        font-size: 17px;
    }
    
    .deluxe-construction-why-choose-list-content strong {
        font-size: 19px;
    }
    
    .deluxe-construction-why-choose-list-content span {
        font-size: 16px;
    }
    
    /* Image appears at bottom on tablet */
    .deluxe-construction-why-choose-container > :first-child {
        order: 1;
    }
    
    .deluxe-construction-why-choose-container > :last-child {
        order: 2;
    }
}

/* Mobile Why Choose */
@media (max-width: 480px) {
    .deluxe-construction-why-choose {
        padding: 60px 0;
    }
    
    .deluxe-construction-why-choose-container {
        padding: 0 20px;
    }
    
    .deluxe-construction-why-choose-title {
        font-size: 28px;
    }
    
    .deluxe-construction-why-choose-text {
        font-size: 16px;
    }
    
    .deluxe-construction-why-choose-list-item {
        gap: 20px;
        padding: 18px;
    }
    
    .deluxe-construction-why-choose-list-item i {
        font-size: 28px;
    }
    
    .deluxe-construction-why-choose-list-content strong {
        font-size: 18px;
    }
    
    .deluxe-construction-why-choose-list-content span {
        font-size: 15px;
    }
    
    /* Image appears at bottom on mobile */
    .deluxe-construction-why-choose-container > :first-child {
        order: 1;
    }
    
    .deluxe-construction-why-choose-container > :last-child {
        order: 2;
    }
}

/* ============================================
   PROCESS SECTION
   ============================================ */

/* Desktop Process */
.deluxe-construction-process {
    background-color: #ffffff; /* Process section background - white */
    padding: 100px 0;
}

.deluxe-construction-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.deluxe-construction-process-title {
    font-size: 46px;
    font-weight: 800;
    text-align: center;
    color: #333; /* Title color */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.deluxe-construction-process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d2b08b; /* Gold underline */
    border-radius: 2px;
}

.deluxe-construction-process-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666; /* Subtitle color */
    margin-bottom: 70px;
    margin-top: 30px;
}

.deluxe-construction-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.deluxe-construction-process-step {
    background-color: #f9f9f9; /* Process step background */
    padding: 45px 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.deluxe-construction-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #d2b08b; /* Gold border on hover */
}

.deluxe-construction-process-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d2b08b; /* Number background - gold */
    color: white; /* Number text color */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(210, 176, 139, 0.4);
}

.deluxe-construction-process-icon {
    font-size: 48px;
    color: #333; /* Icon color */
    margin-bottom: 25px;
    margin-top: 15px;
}

.deluxe-construction-process-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333; /* Step title color */
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.deluxe-construction-process-step-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #d2b08b; /* Gold underline */
    border-radius: 2px;
}

.deluxe-construction-process-step-text {
    font-size: 16px;
    color: #666; /* Step text color */
    line-height: 1.7;
    margin-top: 15px;
}

.deluxe-construction-process-cta {
    text-align: center;
    margin-top: 20px;
}

.deluxe-construction-process-button {
    display: inline-block;
    background-color: black; /* Button background - black */
    color: white; /* Button text color - white */
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid black;
}

.deluxe-construction-process-button:hover {
    background-color: #1a1a1a; /* Button hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Tablet Process */
@media (max-width: 768px) {
    .deluxe-construction-process {
        padding: 80px 0;
    }
    
    .deluxe-construction-process-container {
        padding: 0 30px;
    }
    
    .deluxe-construction-process-title {
        font-size: 36px;
    }
    
    .deluxe-construction-process-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .deluxe-construction-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 35px;
        margin-bottom: 50px;
    }
    
    .deluxe-construction-process-step {
        padding: 40px 25px;
    }
}

/* Mobile Process */
@media (max-width: 480px) {
    .deluxe-construction-process {
        padding: 60px 0;
    }
    
    .deluxe-construction-process-container {
        padding: 0 20px;
    }
    
    .deluxe-construction-process-title {
        font-size: 28px;
    }
    
    .deluxe-construction-process-subtitle {
        font-size: 17px;
    }
    
    .deluxe-construction-process-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .deluxe-construction-process-icon {
        font-size: 42px;
    }
    
    .deluxe-construction-process-step-title {
        font-size: 19px;
    }
    
    .deluxe-construction-process-step-text {
        font-size: 15px;
    }
    
    .deluxe-construction-process-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */

/* Desktop Service Areas */
.deluxe-construction-areas {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.deluxe-construction-areas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.deluxe-construction-areas-map {
    width: 100%;
}

.deluxe-construction-areas-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.deluxe-construction-areas-content h2 {
    font-size: 46px;
    font-weight: 800;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.deluxe-construction-areas-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #d2b08b;
    border-radius: 2px;
}

.deluxe-construction-areas-content > p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    margin-top: 30px;
}

.deluxe-construction-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 35px;
}

.deluxe-construction-areas-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.deluxe-construction-areas-box:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d2b08b;
}

.deluxe-construction-areas-box i {
    font-size: 28px;
    color: #d2b08b;
    flex-shrink: 0;
}

.deluxe-construction-areas-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.deluxe-construction-areas-note {
    font-size: 17px;
    color: #333;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #d2b08b;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.6;
    margin: 0;
}

.deluxe-construction-areas-note i {
    color: #d2b08b;
    font-size: 20px;
    flex-shrink: 0;
}

.deluxe-construction-areas-note a {
    color: #d2b08b;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.deluxe-construction-areas-note a:hover {
    color: #c19f7a;
    text-decoration: underline;
}

/* Tablet Service Areas */
@media (max-width: 768px) {
    .deluxe-construction-areas {
        padding: 80px 0;
    }
    
    .deluxe-construction-areas-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }
    
    .deluxe-construction-areas-map iframe {
        height: 350px;
    }
    
    .deluxe-construction-areas-content h2 {
        font-size: 36px;
    }
    
    .deluxe-construction-areas-content > p {
        font-size: 17px;
    }
    
    .deluxe-construction-areas-box h4 {
        font-size: 17px;
    }
    
    .deluxe-construction-areas-note {
        font-size: 16px;
        padding: 22px;
    }
    
    /* Map appears at bottom */
    .deluxe-construction-areas-map {
        order: 2;
    }
    
    .deluxe-construction-areas-content {
        order: 1;
    }
}

/* Mobile Service Areas */
@media (max-width: 480px) {
    .deluxe-construction-areas {
        padding: 60px 0;
    }
    
    .deluxe-construction-areas-container {
        padding: 0 20px;
    }
    
    .deluxe-construction-areas-map iframe {
        height: 300px;
    }
    
    .deluxe-construction-areas-content h2 {
        font-size: 28px;
    }
    
    .deluxe-construction-areas-content > p {
        font-size: 16px;
    }
    
    .deluxe-construction-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deluxe-construction-areas-box {
        padding: 22px;
    }
    
    .deluxe-construction-areas-box h4 {
        font-size: 16px;
    }
    
    .deluxe-construction-areas-note {
        font-size: 15px;
        padding: 20px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .deluxe-construction-areas-note i {
        width: 100%;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

/* Desktop CTA */
.deluxe-construction-cta {
    background: linear-gradient(135deg, #d2b08b 0%, #c19f7a 100%); /* CTA section background - gold gradient */
    padding: 100px 0;
}

.deluxe-construction-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.deluxe-construction-cta-content {
    text-align: center;
    margin-bottom: 50px;
}

.deluxe-construction-cta-title {
    font-size: 46px;
    font-weight: 800;
    color: white; /* Title color */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.deluxe-construction-cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: white; /* White underline */
    border-radius: 2px;
}

.deluxe-construction-cta-text {
    font-size: 20px;
    color: white; /* Text color */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 45px;
    margin-top: 30px;
}

.deluxe-construction-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.deluxe-construction-cta-button-primary {
    background-color: black; /* Primary button background - black */
    color: white; /* Primary button text color */
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid black;
}

.deluxe-construction-cta-button-primary:hover {
    background-color: #1a1a1a; /* Primary button hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.deluxe-construction-cta-button-secondary {
    background-color: white; /* Secondary button background - white */
    color: #d2b08b; /* Secondary button text color - gold */
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.deluxe-construction-cta-button-secondary:hover {
    background-color: #f5f5f5; /* Secondary button hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deluxe-construction-cta-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.deluxe-construction-cta-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white; /* Feature text color */
    font-size: 18px;
    font-weight: 600;
}

.deluxe-construction-cta-feature i {
    font-size: 24px;
    color: white; /* Feature icon color */
}

/* Tablet CTA */
@media (max-width: 768px) {
    .deluxe-construction-cta {
        padding: 80px 0;
    }
    
    .deluxe-construction-cta-container {
        padding: 0 30px;
    }
    
    .deluxe-construction-cta-title {
        font-size: 36px;
    }
    
    .deluxe-construction-cta-text {
        font-size: 18px;
    }
    
    .deluxe-construction-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .deluxe-construction-cta-button-primary,
    .deluxe-construction-cta-button-secondary {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .deluxe-construction-cta-features {
        gap: 35px;
    }
}

/* Mobile CTA */
@media (max-width: 480px) {
    .deluxe-construction-cta {
        padding: 60px 0;
    }
    
    .deluxe-construction-cta-container {
        padding: 0 20px;
    }
    
    .deluxe-construction-cta-title {
        font-size: 28px;
    }
    
    .deluxe-construction-cta-text {
        font-size: 17px;
    }
    
    .deluxe-construction-cta-button-primary,
    .deluxe-construction-cta-button-secondary {
        padding: 18px 40px;
        font-size: 16px;
    }
    
    .deluxe-construction-cta-features {
        flex-direction: column;
        gap: 25px;
    }
    
    .deluxe-construction-cta-feature {
        font-size: 17px;
        justify-content: center;
    }
}