/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f4f4f4 0%, #e0e0e0 100%);
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(90deg, #fff 0%, #f9f9f9 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #FFAA05;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 15px;
    transition: transform 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    color: #FFAA05;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
}

nav ul li a:hover {
    color: #fff;
    background-color: #FFAA05;
    transform: translateY(-2px);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #FFAA05 0%, #FFD54F 100%);
    color: #fff;
    text-align: center;
    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,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.4rem;
    max-width: 600px;
}

/* Sections */
section {
    padding: 70px 0;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.about, .services, .contact {
    background-color: #fff;
    margin: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.about h2, .services h2, .contact h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #FFAA05;
    font-size: 2.5rem;
    position: relative;
}

.about h2::after, .services h2::after, .contact h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #FFAA05;
    margin: 10px auto;
    border-radius: 2px;
}

.about p {
    max-width: 900px;
    margin: 0 auto 25px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services */
.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    flex: 1 1 280px;
    margin: 25px;
    text-align: center;
    padding: 30px;
    border: 2px solid #FFAA05;
    border-radius: 15px;
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #FFAA05 0%, #FFD54F 100%);
    color: #fff;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #FFAA05;
    font-size: 1.5rem;
}

.service-item:hover h3 {
    color: #fff;
}

/* Contact */
.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-item {
    flex: 1 1 220px;
    margin: 25px;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s;
}

.info-item:hover {
    background: #FFAA05;
    color: #fff;
    transform: scale(1.05);
}

.info-item h3 {
    margin-bottom: 15px;
    color: #FFAA05;
    font-size: 1.3rem;
}

.info-item:hover h3 {
    color: #fff;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #333 0%, #555 100%);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about h2, .services h2, .contact h2 {
        font-size: 2rem;
    }

    .service-list, .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .service-item, .info-item {
        margin: 15px 0;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    nav ul li {
        margin: 5px;
    }

    nav ul li a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}