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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #444444;
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                linear-gradient(135deg, #060606 0%, #151515 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    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 1440 320"><path fill="%23ffc451" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-25px) translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-accent {
    color: #ffc451;
}

.tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #ffc451;
    color: #312f2f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 196, 81, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 196, 81, 0.5);
    background: #ffd670;
}

.services {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

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

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #151515;
}

.section-subtitle {
    text-align: center;
    color: #ffc451;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffc451;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top-color: #151515;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #ffc451;
    color: #312f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: bold;
}

.service-card h3 {
    color: #151515;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #444444;
    line-height: 1.8;
}

.highlight {
    background: linear-gradient(rgba(6, 6, 6, 0.95), rgba(6, 6, 6, 0.95)),
                linear-gradient(135deg, #060606 0%, #252525 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc451 0%, #ffd670 100%);
}

.highlight h2 {
    color: white;
    margin-bottom: 1rem;
}

.highlight p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.main-link {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ffc451;
    color: #312f2f;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(255, 196, 81, 0.3);
}

.main-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 196, 81, 0.5);
    background: #ffd670;
}

/* Footer Styles */
.footer {
    color: #ffffff;
    background-color: #060606;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding: 50px 0;
    background-color: #151515;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer .footer-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer .social-links {
    display: flex;
}

.footer .social-links a {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 16px;
    margin-right: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.footer .social-links a:hover {
    color: #312f2f;
    background-color: #ffc451;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #ffffff;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    margin-right: 4px;
    font-size: 12px;
    line-height: 0;
    color: #ffc451;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    line-height: 1;
    text-decoration: none;
}

.footer .footer-links ul a:hover {
    color: #ffc451;
}

.footer .footer-contact p {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.footer .footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    background-color: rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: #ffc451;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: transparent;
    color: #ffffff;
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: #ffc451;
    color: #312f2f;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: #ffd670;
}

.footer .php-email-form .loading,
.footer .php-email-form .error-message,
.footer .php-email-form .sent-message {
    display: none;
    padding: 10px;
    margin-top: 10px;
}

.footer .php-email-form .loading {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer .php-email-form .error-message {
    background: #df1529;
    color: #ffffff;
}

.footer .php-email-form .sent-message {
    background: #059652;
    color: #ffffff;
}

.footer .copyright {
    padding: 30px 0;
}

.footer .copyright p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer .credits a {
    color: #ffc451;
    text-decoration: none;
}

.footer .credits a:hover {
    color: #ffd670;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}