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

/* Social media browser fixes */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Prevent zoom on form inputs in iOS */
input, select, textarea {
    font-size: 16px;
}

/* Fix for position fixed in social media browsers */
.navbar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

:root {
    --primary-color: #f7931a;
    --secondary-color: #000000;
    --accent-color: #f7931a;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f5f5f5;
    --card-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --orange: #f7931a;
    --dark-orange: #e27d00;
}

body {
    font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.75rem;
    color: #f7931a;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    background: var(--secondary-color);
    color: white;
    padding: 10rem 0 6rem;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    opacity: 0.05;
    z-index: 1;
}

.hero-logo-bg {
    width: 600px;
    height: auto;
}

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

@media (max-width: 768px) {
    .hero-bg {
        right: -30%;
    }
    
    .hero-logo-bg {
        width: 400px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.cta-button:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 26, 0.3);
}

.about {
    padding: 6rem 0;
    background: white;
}

.about h2,
.services h2,
.contact h2 {
    font-size: 2.75rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: -0.5px;
}

.about p {
    font-size: 1.25rem;
    color: var(--text-color);
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-weight: 300;
}

.services {
    padding: 6rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact {
    padding: 6rem 0;
    background: var(--secondary-color);
    color: white;
}

.contact h2 {
    color: white;
}

.contact-info {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.contact-info p:first-child {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

footer {
    background: #000;
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

footer p {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

footer .disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    padding: 0 2rem;
}


/* Newsletter Section */
.newsletter {
    background: #1a1a1a;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.newsletter h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--dark-orange);
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form select option {
    background: var(--secondary-color);
    color: white;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: var(--dark-orange);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 3rem;
    width: 90%;
    max-width: 400px;
    border-radius: 4px;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.close:hover {
    color: var(--text-color);
}

.modal h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

#login-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1rem;
}

#login-form button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

#login-form button:hover {
    background: #333;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.nav-portal {
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    nav ul {
        gap: 1rem;
        font-size: 0.75rem;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-ticker {
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-stats {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        padding: 0 1rem;
    }
}

/* Portfolio Stats */
.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.stat h3 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    padding-left: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.process-step {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--card-shadow);
    border: 1px solid #e0e0e0;
}

.step-number {
    position: absolute;
    left: -45px;
    top: 2rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}