:root {
    --dark-green: #01321F;
    --gold: #B99A48;
    --alabaster: #F0ECE3;
    --white: #FFFFFF;
    --smoky-black: #13110A;
}

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

body {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1.6;
    color: var(--smoky-black);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(19, 17, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(185, 154, 72, 0.2);
    transition: all 0.3s ease;
}
option {
    color: #000;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-content .logo {
    width: 50%;
}

.logo h2 {
    color: var(--gold);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(185, 154, 72, 0.3);
}

.header-cta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.phone-btn {
    color: var(--alabaster);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.phone-btn:hover {
    color: var(--gold);
    transform: translateX(2px);
}

.cta-btn, .primary-cta, .big-cta {
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    color: var(--smoky-black);
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(185, 154, 72, 0.3);
}

.cta-btn:hover, .primary-cta:hover, .big-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 154, 72, 0.5);
    background: linear-gradient(135deg, #d4af5a, var(--gold));
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 140px 0 120px;
    background: linear-gradient(135deg, var(--smoky-black) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23B99A48" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23B99A48" opacity="0.15"/><circle cx="40" cy="80" r="1.5" fill="%23B99A48" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 24px;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 22px;
    margin-bottom: 48px;
    color: var(--alabaster);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

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

.phone-cta {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(185, 154, 72, 0.1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-cta:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(185, 154, 72, 0.4);
}

.before-after-slider {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(185, 154, 72, 0.2);
    border: 2px solid var(--gold);
    position: relative;
    cursor: grab;
}

.before-after-slider:active {
    cursor: grabbing;
}

.slider-container {
    position: relative;
    height: 100%;
    display: flex;
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.before-image {
    background: linear-gradient(135deg, rgba(19, 17, 10, 0.4), rgba(1, 50, 31, 0.3)),
                url('Images/20160729_DSC_1933_internal_living_room_before.webp') center/cover;
}

.after-image {
    background: linear-gradient(135deg, rgba(1, 50, 31, 0.2), rgba(185, 154, 72, 0.2)),
                url('Images/20230924_DSC_2114_internal_living_room_after.webp') center/cover;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.1s ease;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(185, 154, 72, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--smoky-black);
    font-size: 14px;
    cursor: grab;
    box-shadow: 0 4px 15px rgba(185, 154, 72, 0.4);
    transition: all 0.2s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(185, 154, 72, 0.6);
}

.slider-button:active {
    cursor: grabbing;
}

/* Trust Block */
.trust-block {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-green) 0%, var(--smoky-black) 100%);
    position: relative;
    overflow: hidden;
}

.trust-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(185, 154, 72, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

.trust-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(240, 236, 227, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(185, 154, 72, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 154, 72, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(185, 154, 72, 0.2);
}

.trust-item i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(185, 154, 72, 0.3));
    position: relative;
    z-index: 2;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.trust-item p {
    color: var(--alabaster);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--smoky-black) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(185, 154, 72, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(185, 154, 72, 0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.services h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.services-intro {
    text-align: center;
    font-size: 22px;
    margin-bottom: 80px;
    color: var(--alabaster);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-item {
    padding: 48px 40px;
    background: rgba(240, 236, 227, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(185, 154, 72, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(185, 154, 72, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(185, 154, 72, 0.2);
    border-color: var(--gold);
    background: rgba(240, 236, 227, 0.1);
}

.service-item i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(185, 154, 72, 0.3));
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item p {
    color: var(--alabaster);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.section-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Gallery */
.gallery {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--smoky-black) 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(185, 154, 72, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(1, 50, 31, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite reverse;
}

.gallery h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery p {
    text-align: center;
    font-size: 22px;
    margin-bottom: 80px;
    color: var(--alabaster);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.gallery-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 60px rgba(185, 154, 72, 0.2);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(185, 154, 72, 0.3);
}

.comparison {
    height: 500px;
    position: relative;
    cursor: grab;
    border-radius: 20px;
    overflow: hidden;
}

.comparison:active {
    cursor: grabbing;
}

.logo .site-logo {
    width: 35%;
}

.footer-contact .site-logo {
    width: 50%;
    margin-bottom: 20px;
}

.before, .after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.before {
    background: linear-gradient(135deg, rgba(19, 17, 10, 0.4), rgba(1, 50, 31, 0.3)),
                url('Images/before.webp') center/cover;
}

.after {
    background: linear-gradient(135deg, rgba(1, 50, 31, 0.2), rgba(185, 154, 72, 0.2)),
                url('Images/after.webp') center/cover;
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.1s ease;
}

/* Testimonials */
.testimonials {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--dark-green) 0%, var(--smoky-black) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(185, 154, 72, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(185, 154, 72, 0.12) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

.testimonials h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 80px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial {
    padding: 48px 40px;
    background: rgba(240, 236, 227, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(185, 154, 72, 0.2);
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(185, 154, 72, 0.1), transparent);
    transition: left 0.6s ease;
}

.testimonial:hover::before {
    left: 100%;
}

.testimonial:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(185, 154, 72, 0.2);
    border-color: var(--gold);
    background: rgba(240, 236, 227, 0.1);
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 24px;
    filter: drop-shadow(0 2px 4px rgba(185, 154, 72, 0.3));
}

.testimonial p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
}

.testimonial cite {
    font-weight: 700;
    color: var(--gold);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-btn {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(185, 154, 72, 0.1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.secondary-btn:hover {
    background: var(--gold);
    color: var(--smoky-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185, 154, 72, 0.4);
}

/* Methodology */
.methodology {
    padding: 140px 0;
    background: linear-gradient(180deg, #000 0%, var(--smoky-black) 100%);
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(185, 154, 72, 0.05) 50%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(1, 50, 31, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

.methodology h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 100px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: rgba(240, 236, 227, 0.03);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(185, 154, 72, 0.15);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 154, 72, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(185, 154, 72, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(185, 154, 72, 0.3);
}

.step:hover .step-icon {
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 15px 35px rgba(185, 154, 72, 0.5);
    background: linear-gradient(135deg, #d4af5a, var(--gold));
}

.step-icon i {
    font-size: 32px;
    color: var(--smoky-black);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.step h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--alabaster);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Strong CTA */
.strong-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--smoky-black) 0%, #000 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.strong-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(185, 154, 72, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(1, 50, 31, 0.2) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.strong-cta h2 {
    font-size: 64px;
    margin-bottom: 32px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.9;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strong-cta p {
    font-size: 22px;
    margin-bottom: 56px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.big-cta {
    font-size: 20px;
    padding: 20px 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    color: var(--smoky-black);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(185, 154, 72, 0.4);
    transition: all 0.4s ease;
}

.big-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(185, 154, 72, 0.6);
    background: linear-gradient(135deg, #d4af5a, var(--gold));
}

/* Service Area */
.service-area {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--smoky-black) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(185, 154, 72, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.service-area h2 {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-area p {
    font-size: 20px;
    color: var(--alabaster);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Contact Form */
.contact {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--dark-green) 0%, var(--smoky-black) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 60%, rgba(185, 154, 72, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(185, 154, 72, 0.08) 0%, transparent 50%);
    animation: float 18s ease-in-out infinite;
}

.contact h2 {
    text-align: center;
    font-size: 56px;
    margin-bottom: 80px;
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(240, 236, 227, 0.05);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 24px;
    border: 2px solid rgba(185, 154, 72, 0.3);
    box-shadow: 0 30px 60px rgba(185, 154, 72, 0.15);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.contact-form:hover {
    border-color: var(--gold);
    box-shadow: 0 40px 80px rgba(185, 154, 72, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 18px 24px;
    border: 1px solid rgba(185, 154, 72, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(240, 236, 227, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--alabaster);
    opacity: 0.7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(240, 236, 227, 0.15);
    box-shadow: 0 0 0 3px rgba(185, 154, 72, 0.2);
    transform: translateY(-2px);
}

.contact-form textarea {
    width: 100%;
    margin-bottom: 32px;
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    color: var(--smoky-black);
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(185, 154, 72, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(185, 154, 72, 0.5);
    background: linear-gradient(135deg, #d4af5a, var(--gold));
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000 0%, var(--smoky-black) 100%);
    color: var(--white);
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(185, 154, 72, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(1, 50, 31, 0.1) 0%, transparent 50%);
    animation: shimmer 12s ease-in-out infinite;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-contact h3 {
    margin-bottom: 32px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(185, 154, 72, 0.3);
}

.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--alabaster);
    transition: all 0.3s ease;
}

.footer-contact p:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-contact i {
    width: 24px;
    color: var(--gold);
    filter: drop-shadow(0 2px 4px rgba(185, 154, 72, 0.3));
}

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

.footer-social a {
    color: var(--alabaster);
    font-size: 20px;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(185, 154, 72, 0.3);
    background: rgba(185, 154, 72, 0.05);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    color: var(--smoky-black);
    background: var(--gold);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(185, 154, 72, 0.4);
}

.footer-legal {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(185, 154, 72, 0.2);
    position: relative;
    z-index: 2;
}

.footer-legal a {
    color: var(--alabaster);
    text-decoration: none;
    margin: 0 24px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal a:hover {
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(185, 154, 72, 0.5);
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--white);
    border-radius: 16px;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(185, 154, 72, 0.4);
    transition: all 0.2s ease;
    border: 2px solid var(--dark-green);
}

.whatsapp-widget a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(185, 154, 72, 0.6);
    background: var(--dark-green);
    border-color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 56px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services h2, .gallery h2, .testimonials h2, .methodology h2, .contact h2 {
        font-size: 36px;
    }
    
    .strong-cta h2 {
        font-size: 40px;
    }
    
    .services-intro, .gallery p {
        font-size: 18px;
        margin-bottom: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 40px 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .header-cta {
        gap: 16px;
    }
    
    .phone-btn {
        display: none;
    }
    
    .before-after-slider, .comparison {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .services h2, .gallery h2, .testimonials h2, .methodology h2, .contact h2 {
        font-size: 28px;
    }
    
    .strong-cta h2 {
        font-size: 32px;
    }
    
    .service-item, .testimonial {
        padding: 32px 24px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-widget a {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .cta-btn, .primary-cta, .big-cta {
    background: linear-gradient(135deg, var(--gold), #d4af5a);
    color: var(--smoky-black);
    padding: 12px 12px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(185, 154, 72, 0.3);
    }
    
    .logo .site-logo {
    width: 80%;
    }

}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--gold); }
    100% { box-shadow: 0 0 20px var(--gold), 0 0 30px var(--gold); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Focus states for accessibility */
.cta-btn:focus,
.primary-cta:focus,
.big-cta:focus,
.submit-btn:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Loading state */
.submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}