/* Import Oswald Font */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

/* Reset Styles */
.ss-reset * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Body Styles */
.ss-body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

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

/* Header Styles */
.ss-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.ss-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.ss-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ss-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.ss-nav-links a {
    font-family: 'Oswald', sans-serif;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.ss-nav-links a:hover {
    color: #ff6b35;
}

/* Hero Section */
.ss-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ss-hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    background-image: url("images/hero.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
    transform: translateY(var(--parallax-offset, 0px));
}

.ss-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.8) 0%, 
        rgba(52, 73, 94, 0.6) 25%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(52, 73, 94, 0.6) 75%,
        rgba(44, 62, 80, 0.8) 100%);
    z-index: 0;
}

.ss-hero-content {
    position: relative;
    z-index: 2;
    animation: heroFadeIn 1.2s ease-out;
}

.ss-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 
                 0 0 20px rgba(255, 107, 53, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.ss-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 300;
    line-height: 1.4;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.ss-cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ss-cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ss-cta-button:hover {
    background: linear-gradient(45deg, #e55a2b, #e67a35);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.ss-cta-button:hover:before {
    left: 100%;
}

.ss-cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Services Section */
.ss-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.ss-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.ss-section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    margin: 20px auto;
}

.ss-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ss-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;
    position: relative;
    overflow: hidden;
}

.ss-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
}

.ss-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.ss-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 24px;
    color: white;
}

/* About Section */
.ss-about {
    padding: 100px 0;
    background: white;
}

.ss-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ss-about-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.ss-about-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.ss-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.ss-stat {
    text-align: center;
}

.ss-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
}

.ss-stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.ss-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.ss-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.ss-contact-title {
    color: white;
}

.ss-contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b35;
}

.ss-contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ss-contact-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.ss-form-group {
    margin-bottom: 1.5rem;
}

.ss-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff6b35;
}

.ss-form-group input,
.ss-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.ss-form-group input::placeholder,
.ss-form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Footer */
.ss-footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .ss-nav-links {
        display: none;
    }

    .ss-hero-title {
        font-size: 2.5rem;
    }

    .ss-about-content,
    .ss-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ss-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}