/* Modern Clean Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #D35A3C;
    --primary-navy: #2C3E50;
    --accent-blue: #3498DB;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --pure-white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--pure-white);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 90, 60, 0.3);
}

.contact-btn:hover {
    background: #B8472F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(211, 90, 60, 0.4);
}

/* Accent Elements */
.accent-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.accent-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(211, 90, 60, 0.1), rgba(52, 152, 219, 0.1));
}

.accent-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float-slow 8s ease-in-out infinite;
}

.accent-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    animation: float-slow 6s ease-in-out infinite reverse;
}

.accent-line {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-blue));
    top: 50%;
    left: 5%;
    transform: rotate(45deg);
    opacity: 0.6;
}

/* Animations */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) scale(1.05);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .logo {
        max-width: 280px;
        margin-bottom: 1.5rem;
    }
    
    .contact-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .accent-1, .accent-2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 240px;
    }
    
    .contact-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.contact-btn:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}