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

:root {
    --primary-orange: #FF8C00;
    --dark-gray: #2C3E50;
    --light-gray: #ECF0F1;
    --accent-yellow: #F39C12;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --earth-brown: #8B4513;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
}

header {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--earth-brown) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    gap: 2rem;
}

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

.logo-full {
    height: 50px;
    width: auto;
    max-width: 300px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-orange);
}

.header-phone {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary-orange);
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
}

.header-phone:hover {
    background: var(--accent-yellow);
    transform: scale(1.05);
}

.phone-icon {
    font-size: 1.2rem;
}

.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact-btn:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.contact-popup.active {
    display: flex;
}

.contact-popup-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

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

.contact-popup-content h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    text-align: center;
}

.popup-option {
    display: block;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
}

.popup-option:hover {
    background: var(--primary-orange);
    color: var(--text-light);
    transform: translateX(5px);
}

.popup-option:last-child {
    margin-bottom: 0;
}

.popup-icon {
    font-size: 2rem;
}

.popup-option strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.popup-option p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(139, 69, 19, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 2rem;
    margin-top: 70px;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-orange);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    background: var(--dark-gray);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
}

.gallery-item img.fade-out {
    opacity: 0;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    padding: 1rem 0.75rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    opacity: 0;
    z-index: 10;
}

.gallery-item:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-nav:hover {
    background: var(--primary-orange);
}

.gallery-counter {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

.about-text {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-prominent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-orange);
    border-radius: 10px;
}

.contact-item-prominent strong {
    color: var(--text-light);
    font-size: 1.1rem;
}

.phone-prominent {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s;
}

.phone-prominent:hover {
    color: var(--accent-yellow);
    transform: scale(1.05);
    display: inline-block;
}

.phone-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--accent-yellow);
}

.email-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--accent-yellow);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-orange);
    width: 40px;
}

footer {
    background: var(--dark-gray);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-gray);
        padding: 1rem;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .header-phone {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    

    
    .phone-prominent {
        font-size: 1.1rem;
    }
    
    .contact-item-prominent {
        padding: 1rem;
    }
    
    .contact-item-prominent strong {
        font-size: 1rem;
    }
}

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

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

.hero-content {
    animation: fadeIn 0.8s ease-out;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content p:nth-of-type(1) {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content p:nth-of-type(2) {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.8s both;
    transition: all 0.3s ease;
}

/* Floating animation for Contact Now button */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-contact-btn {
    animation: fadeIn 1s ease-out 1.5s both, float 3s ease-in-out 2.5s infinite;
}
