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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

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

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FDB714;
    transition: width 0.3s ease;
}

.nav a:hover {
    color: #FDB714;
    transform: translateY(-2px);
}

.nav a:hover::after {
    width: 100%;
}

.header-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.info-item:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.4);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.value {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: url('hero.png') center/cover;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    max-width: 500px;
    border-left: 5px solid #FDB714;
    animation: slideInLeft 0.8s ease-out;
    transition: all 0.3s ease;
}

.hero-box:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(253, 183, 20, 0.3);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-box h2 {
    color: #FDB714;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-box h3 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-box p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.8;
}

.btn-primary {
    background: #FDB714;
    color: #000;
    border: none;
    padding: 15px 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(253, 183, 20, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: #e5a512;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 183, 20, 0.5);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #FDB714;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(253, 183, 20, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(253, 183, 20, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(253, 183, 20, 0.5);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.link-arrow {
    color: #FDB714;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 12px;
    transform: translateX(5px);
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FDB714;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.4);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.feature-text p {
    color: #666;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #333;
}

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

.portfolio-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 183, 20, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(253, 183, 20, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-category {
    color: #FDB714;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.portfolio-content h3 {
    font-size: 22px;
    margin: 10px 0 15px;
    color: #333;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-yellow {
    background: #FDB714;
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(253, 183, 20, 0.3);
}

.btn-yellow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-yellow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-yellow:hover {
    background: #e5a512;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 183, 20, 0.5);
}

/* CTA Banner */
.cta-banner {
    background: #FDB714;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
}

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(253, 183, 20, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-white:hover::before {
    width: 300px;
    height: 300px;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-container {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FDB714, #e5a512);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FDB714;
    border-radius: 2px;
}

.form-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

.form-container form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #FDB714;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group.textarea-group i {
    top: 25px;
    transform: none;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Arial', sans-serif;
}

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

.form-container input:hover,
.form-container textarea:hover {
    border-color: #FDB714;
    background: #fff;
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.15);
}

.form-container input:focus,
.form-container textarea:focus {
    outline: none;
    border-color: #FDB714;
    background: #fff;
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.25);
    transform: translateY(-2px);
}

.form-container input:focus + i,
.form-container textarea:focus + i {
    color: #e5a512;
    transform: translateY(-50%) scale(1.1);
}

.btn-submit {
    background: linear-gradient(135deg, #FDB714, #e5a512);
    color: #000;
    border: none;
    padding: 18px 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 16px;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(253, 183, 20, 0.4);
    text-transform: uppercase;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(253, 183, 20, 0.6);
}

.btn-submit:active {
    transform: translateY(-2px);
}

.contact-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 183, 20, 0.2), rgba(229, 165, 18, 0.2));
    z-index: 1;
    transition: opacity 0.3s ease;
}

.contact-image:hover::before {
    opacity: 0;
}

.contact-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.blog-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #FDB714;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(253, 183, 20, 0.3);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #FDB714;
    font-size: 12px;
    font-weight: bold;
}

.blog-content h3 {
    font-size: 18px;
    margin: 10px 0 15px;
    color: #333;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo {
    text-align: left;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #FDB714;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #FDB714;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #FDB714;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #e5a512;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(253, 183, 20, 0.5);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #bbb;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: #FDB714;
    color: #000;
    padding: 8px 15px;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: default;
}

.badge:hover {
    background: #e5a512;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(253, 183, 20, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-box h3 {
        font-size: 32px;
    }
    
    .section-title,
    .cta-content h2 {
        font-size: 28px;
    }
}
