* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* Font Awesome Icons (simplified) */
.fa:before {
    font-family: Arial, sans-serif;
}
.fa-phone:before { content: "📞"; }
.fa-envelope:before { content: "✉️"; }
.fa-map-marker:before { content: "📍"; }
.fa-facebook:before { content: "f"; 
    background: #3b5998;
    color: white;
    padding: 5px 8px;
    border-radius: 3px;
}
.fa-chevron-up:before { content: "▲"; }

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.phone-number {
    color: #dd8706;
    font-weight: bold;
    font-size: 16px;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: #dd8706;
}

.social-icon a {
    font-size: 24px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #dd8706;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    background: #dd8706;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.cta-btn:hover {
    background: #c67705;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Info Boxes */
.info-boxes {
    margin-top: -50px;
    position: relative;
    z-index: 100;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.info-box {
    padding: 40px 20px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.info-box.box-1 { background: #dd8706; }
.info-box.box-2 { background: #dd9221; }
.info-box.box-3 { background: #dd9e40; }
.info-box.box-4 { background: #ddaf6a; }

.info-box .icon img {
    max-width: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.info-box h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.info-box h3 a {
    color: white;
    text-decoration: none;
}

.info-box p {
    line-height: 1.8;
    font-size: 14px;
}

.info-box .subtitle {
    font-size: 13px;
    margin-bottom: 10px;
}

.info-box .small-text {
    font-size: 11px;
    margin-top: 10px;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #333;
}

.section-header .subtitle {
    font-size: 18px;
    color: #666;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-main p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.divider {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #dd8706;
    border-bottom: 2px solid #dd8706;
    text-align: center;
}

.divider h4 {
    font-size: 20px;
    color: #dd8706;
}

.services-list {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dd8706;
    font-weight: bold;
    font-size: 20px;
}

.content-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.uv-widget {
    text-align: center;
}

.uv-widget h4 {
    color: #dd8706;
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #dd8706 0%, #ddaf6a 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.contact-info {
    margin: 30px 0;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}

.contact-info a:hover {
    color: #dd8706;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    margin-right: 10px;
}

.footer-section h4 {
    color: #dd8706;
    margin-bottom: 20px;
}

.facebook-widget {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 5px;
}

.fb-link {
    display: inline-block;
    background: #3b5998;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
}

.fb-link:hover {
    background: #2d4373;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.copyright .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #95a5a6;
}

.text-right {
    text-align: right;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #dd8706;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c67705;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}