/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section .address {
    text-transform: uppercase;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section .phone,
.footer-section .email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul a:hover {
    color: #ffa500;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffa500;
    border-color: #ffa500;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Footer Responsive Design */
@media screen and (max-width: 1024px) {
    .footer .container {
        padding: 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section .phone,
    .footer-section .email {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

.hero {
    height: 100vh;
    background: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.7)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInDown 1s ease forwards;
}

.logo img {
    width: 100%;
    height: auto;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: #ffa500;
    margin: 2rem auto;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.hero-divider::before {
    left: -70px;
}

.hero-divider::after {
    right: -70px;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    margin: 0 auto;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 1rem auto 0;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

@media screen and (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .logo {
        width: 140px;
        margin-bottom: 0.5rem;
    }
    
    .hero-divider {
        margin: 1.5rem auto;
    }
    
    .hero p {
        padding: 0 1rem;
    }
    
    .scroll-indicator {
        bottom: 1rem;
    }
}

/* Contact Ribbon */
.contact-ribbon {
    background-color: #ffa500;
    width: 100%;
    padding: 0.75rem 0;
    position: relative;
    z-index: 10;
}

.contact-ribbon .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.phone-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
}

.contact-button {
    display: inline-flex;
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background: white;
    color: #ffa500;
}

.contact-button i {
    font-size: 0.8rem;
    margin-top: 1px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
    .contact-ribbon .container {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .contact-ribbon {
        padding: 1rem 0;
    }

    .contact-ribbon .container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .contact-info {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .contact-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
        justify-content: center;
        width: auto;
        min-width: 200px;
    }
}
