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

:root {
    --primary: #B8860B;
    --primary-light: #DAA520;
    --accent: #B8860B;
    --bg: #FFFFFF;
    --bg-card: #F8F8F8;
    --bg-light: #F0F0F0;
    --text: #1A1A1A;
    --text-muted: #666666;
    --border: #1A1A1A;
    --gradient: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    padding: 12px 0;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #1A1A1A;
    margin-left: 12px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

.btn-cta {
    background: var(--gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

/* Hero */
.hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.4) 100%),
        url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

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

.trust-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.trust-badges span {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
}

.hero-text h1 {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #000000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-text p {
    color: #1A1A1A;
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Star Rating */
.star-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.stars {
    color: #DAA520;
    font-size: 22px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.rating-text {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Urgency Message */
.urgency-text {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.15) 0%, rgba(218, 165, 32, 0.15) 100%);
    border: 1px solid var(--primary);
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    display: block;
    text-shadow: none;
    font-size: 15px;
    line-height: 1.5;
}

.guarantee-text {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text);
    padding: 16px 32px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

/* Hero Form */
.hero-form {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s;
}

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

.hero-form .btn-submit {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.hero-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}

.form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.form-trust span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Form Success/Error Messages */
.form-message {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.15) 100%);
    border: 1px solid #22c55e;
    color: #15803d;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.15) 100%);
    border: 1px solid #ef4444;
    color: #dc2626;
}

.form-message .msg-icon {
    font-size: 20px;
    font-weight: bold;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

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

.section-header h2 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

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

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Calculator */
.calculator {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

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

.calc-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.calc-group select {
    width: 100%;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    cursor: pointer;
}

.calc-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.calc-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--gradient);
    border-radius: 16px;
    padding: 40px 30px;
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.result-amount {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.result-note {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.calc-result .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.calc-result .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Gallery Grid */
.gallery {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(184, 134, 11, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Section CTA (repeated call-to-action) */
.section-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

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

.trust-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.trust-check {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.trust-image-container {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.area-column {
    text-align: center;
    padding: 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.area-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.area-column p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.areas-note {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.areas-note a {
    color: var(--primary);
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.process-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-card);
}

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

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

.faq-answer {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */

.contact {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-item .icon {
    font-size: 28px;
}

.contact-item strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-light);
}

/* Quote Form */
.quote-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: 20px;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.2s;
}

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

.quote-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--gradient);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 40px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-link {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-form {
        grid-template-columns: 1fr 1fr;
    }

    .before-after {
        flex-direction: column;
    }

    .trust-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-content .section-header {
        text-align: center;
    }

    .trust-image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .ba-arrow {
        transform: rotate(90deg);
    }

    .ba-item {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 24px;
    }

    .calc-form {
        grid-template-columns: 1fr;
    }

    .result-amount {
        font-size: 32px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-call:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.6);
}

.call-icon {
    font-size: 20px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(184, 134, 11, 0.7);
    }
}

@media (max-width: 640px) {
    .floating-call .call-text {
        display: none;
    }

    .floating-call {
        padding: 16px;
        border-radius: 50%;
    }
}