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

:root {
    --primary-orange: #e67e22;
    --primary-dark: #d35400;
    --secondary-orange: #f39c12;
    --beige: #f5f1e8;
    --cream: #faf8f3;
    --brown: #8b6f47;
    --dark-brown: #5d4e37;
    --dark: #2c3e50;
    --gray: #7f8c8d;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--beige);
    overflow-x: hidden;
}

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

.top-bar {
    background: var(--white);
    padding: 1rem 0;
    border-bottom: 3px solid var(--dark-brown);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 50px;
    width: auto;
}

.company-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-brown);
    letter-spacing: 1px;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
}

.phone-icon {
    width: 24px;
    height: 24px;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-banner {
    position: relative;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #8b6f47 0%, #d4a574 50%, #8b6f47 100%);
}

.hero-image[src*="office-hero.jpg"] {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1200&h=600&fit=crop') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 3rem 0;
}

.hero-left {
    color: var(--white);
    max-width: 800px;
    text-align: center;
}

.hero-tag {
    background: var(--secondary-orange);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transform: skew(-5deg);
}

.tag-text {
    display: block;
    transform: skew(5deg);
    font-weight: 600;
    font-size: 1rem;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-badge {
    background: var(--white);
    color: var(--dark);
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

.promo-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.promo-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
    border: 3px solid var(--dark-brown);
}

.trust-badge {
    text-align: center;
    margin-bottom: 1.5rem;
}

.badge-logo {
    height: 80px;
    width: auto;
}

.pricing-content {
    text-align: center;
}

.pricing-intro {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.cta-section {
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.offer-validity {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.offer-validity strong {
    color: var(--primary-orange);
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-phone,
.btn-contact {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-phone {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-phone svg {
    width: 20px;
    height: 20px;
}

.btn-contact {
    background: var(--dark-brown);
    color: var(--white);
}

.btn-contact:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.reviews-section {
    background: var(--cream);
    padding: 3rem 0;
    border-top: 3px solid var(--dark-brown);
    border-bottom: 3px solid var(--dark-brown);
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.trust-badge-section {
    text-align: center;
}

.review-badge {
    height: 100px;
    width: auto;
}

.reviews-stats {
    text-align: center;
}

.reviews-count {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.star-count {
    font-weight: 600;
    font-size: 0.95rem;
}

.stars-display {
    color: var(--secondary-orange);
    font-size: 1.1rem;
}

.tagline-section {
    text-align: center;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    font-style: italic;
}

.client-section {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 3px solid var(--dark-brown);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.team-photo[src*="team-photo.jpg"] {
    background: url('https://images.unsplash.com/photo-1560250097-0b93528c311a?w=200&h=200&fit=crop') center/cover;
}

.client-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

.services-section {
    padding: 4rem 0;
    background: var(--white);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.section-subheading {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 600;
}

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

.service-box {
    background: var(--beige);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.service-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-section {
    padding: 4rem 0;
    background: var(--beige);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-item strong {
    color: var(--dark-brown);
    font-size: 0.9rem;
}

.detail-item span {
    color: var(--gray);
}

.detail-item a {
    color: var(--primary-orange);
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.about-address {
    background: var(--primary-orange);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-address h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.address-box {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.address-box svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.address-text p {
    line-height: 1.8;
}

.contact-section {
    padding: 4rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--beige);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateX(5px);
}

.contact-method svg {
    width: 24px;
    height: 24px;
}

.contact-form-wrapper {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: var(--cream);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--cream);
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        justify-content: center;
    }
    
    .reviews-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .reviews-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.popup-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-button 2s infinite;
}

.popup-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(230, 126, 34, 0.6);
}

.popup-trigger svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(230, 126, 34, 0.8);
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-bubble {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    border: 4px solid var(--primary-orange);
}

.popup-overlay.active .popup-bubble {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary-dark);
    transform: rotate(90deg);
}

.popup-content {
    padding: 2.5rem;
    text-align: center;
}

.popup-badge {
    margin-bottom: 1.5rem;
}

.popup-logo {
    height: 80px;
    width: auto;
}

.popup-offer {
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.popup-offer h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.popup-offer p {
    font-size: 1rem;
    color: var(--gray);
}

.popup-pricing {
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-text {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}

.popup-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 12px;
}

.popup-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    font-size: 0.95rem;
    color: var(--dark);
}

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

.popup-tagline {
    background: var(--secondary-orange);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.popup-tagline p {
    margin: 0;
    font-size: 1.1rem;
}

.popup-promo {
    background: var(--beige);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.promo-highlight {
    font-size: 1rem;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
}

.promo-deadline {
    font-size: 0.95rem;
    color: var(--primary-orange);
    margin: 0;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-btn {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.popup-btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.popup-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.popup-btn-primary svg {
    width: 20px;
    height: 20px;
}

.popup-btn-secondary {
    background: var(--dark-brown);
    color: var(--white);
}

.popup-btn-secondary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 78, 55, 0.4);
}

@media (max-width: 768px) {
    .popup-trigger {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .popup-trigger span {
        display: none;
    }
    
    .popup-bubble {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-logo {
        height: 60px;
    }
    
    .popup-offer h3 {
        font-size: 1.25rem;
    }
}
