:root {
    /* Color Palette derived from logo */
    --primary-orange: #E58735;
    --primary-orange-hover: #C5732A;
    --secondary-slate: #4A5C6D;
    --secondary-slate-dark: #32404D;
    
    /* Backgrounds & Text */
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #FFFFFF;

    /* Styling Variables */
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
.highlight {
    color: var(--primary-orange);
}

h1, h2, h3, h4 {
    color: var(--secondary-slate-dark);
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 135, 53, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--secondary-slate-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Section Utilities */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar.scrolled .logo-text {
    color: var(--secondary-slate-dark);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-orange);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-orange);
}

.menu-toggle {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .menu-toggle {
    color: var(--secondary-slate-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('images/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 92, 109, 0.8) 0%, rgba(50, 64, 77, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-light);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
    animation: bounce 2s infinite;
}

/* Services */
.services {
    background-color: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #C5732A 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.9);
    border-radius: var(--border-radius);
}

.service-card:hover {
    transform: translateY(-10px);
    color: var(--text-light);
}

.service-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.service-card:hover h3, 
.service-card:hover p, 
.service-card:hover .service-icon {
    color: var(--text-light);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

/* Why Choose Us */
.why-us {
    background-color: var(--bg-white);
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-us-text {
    flex: 1;
}

.why-us-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-us-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list li i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.why-us-image {
    flex: 1;
    position: relative;
    height: 500px;
    background: url('images/hero-bg.png') center/cover no-repeat; /* Reuse image or separate later */
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(74, 92, 109, 0.4);
    border-radius: inherit;
}

.stats-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
    color: var(--text-light);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background-color: var(--bg-light);
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    background: rgba(229, 135, 53, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.info-item h4 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    flex: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(229, 135, 53, 0.1);
}

/* Footer */
.footer {
    background-color: var(--secondary-slate-dark);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #a0aab5;
    margin-bottom: 20px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-col a {
    display: block;
    color: #a0aab5;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:not(.social-links a):hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0aab5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-us-content, .contact-wrapper {
        flex-direction: column;
    }
    .why-us-image {
        width: 100%;
        min-height: 400px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        color: var(--text-main);
        width: 100%;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
    .navbar {
        background-color: var(--bg-white);
        padding: 15px 0;
    }
    .logo-text, .menu-toggle {
        color: var(--secondary-slate-dark);
    }
    .hero-buttons {
        flex-direction: column;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
