/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6914;
    --primary-dark: #5C4610;
    --secondary: #2C3E35;
    --accent: #D4AF37;
    --light: #F5F1E8;
    --dark: #1A1612;
    --text: #3D3229;
    --text-light: #6B5D4D;
    --border: #D4C9B8;
    --earth: #8B7355;
    --dirt: #6B5344;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header - Professional Design */
.header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    color: white;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.logo-container {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin: 0 auto;
}

.logo-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.company-name {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: white;
    margin: 0;
    line-height: 1.1;
}

.company-tagline {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 8px;
    margin: 0;
    text-transform: uppercase;
}

.company-motto {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-top: 15px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .header {
        padding: 40px 0 30px;
    }
    
    .company-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .company-tagline {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .company-motto {
        font-size: 1rem;
    }
    
    .logo-img {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 280px;
        padding: 5px;
    }
    
    .logo-img {
        max-height: 100px;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
    
    .company-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .logo-img {
        max-height: 100px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dirt) 0%, var(--earth) 50%, var(--primary) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.icon {
    width: 20px;
    height: 20px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light);
}

.about h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.about-highlight {
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary);
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Area */
.service-area {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1A2620 100%);
    color: white;
    text-align: center;
}

.service-area h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.location {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
}

.area-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Services */
.services {
    padding: 80px 0;
}

.services h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.icon-line {
    width: 100%;
    height: 100%;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
}

.service-card li:last-child {
    border-bottom: none;
}

.services-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--light);
    border-radius: 10px;
    color: var(--text-light);
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: var(--light);
}

.gallery h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.gallery-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    aspect-ratio: 4/3;
    background: white;
    border: 2px dashed var(--border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.gallery-placeholder:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.gallery-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 80px 0;
}

.contact h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 50px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.contact-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.contact-person {
    margin: 15px 0;
}

.contact-person strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.phone {
    font-size: 1.3rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.phone:hover {
    text-decoration: underline;
}

address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-box {
    background: linear-gradient(135deg, var(--dirt) 0%, var(--earth) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-box .btn {
    background: white;
    color: var(--primary);
}

.cta-box .btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #0D0B09 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
}

}

/* Popup CTA */
.popup-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 25px 20px 20px;
    max-width: 300px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    z-index: 1000;
    transform: translateX(150%);
    transition: transform 0.5s ease;
    border: 2px solid var(--accent);
    position: relative;
    overflow: hidden;
}

}

.popup-cta.show {
    transform: translateX(0);
}

.popup-content {
    position: relative;
}

.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.popup-close:hover {
    background: var(--accent);
}

.popup-cta h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.popup-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-popup {
    background: white;
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-popup:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-popup-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

/* Mobile Popup */
@media (max-width: 480px) {
    .popup-cta {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

.footer-content {
    margin-bottom: 20px;
}

.logo-small {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.tagline-small {
    display: block;
    color: var(--accent);
    font-size: 1rem;
    margin-top: 5px;
}

.footer-motto {
    font-style: italic;
    opacity: 0.8;
    margin-top: 10px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .locations {
        gap: 10px;
    }
    
    .location {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .about, .services, .gallery, .contact {
        padding: 50px 0;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .hero-buttons, .cta-box {
        display: none;
    }
    
    .contact-card {
        break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus, button:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: var(--primary);
    color: white;
}
