@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --primary-color: #ffcc00;
    --dark-color: #1a1a1a;
    --light-gray: #f9f9f9;
    --border-color: #eee;
    --text-color: #333;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.top-bar {
    background: var(--dark-color);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar a {
    color: #fff;
}

header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

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

/* Hero Section */
.hero {
    background-size: cover !important;
    background-position: center !important;
    height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background: rgba(0,0,0,0.6);
    padding: 50px;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title span {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 40px;
    margin: 0;
    color: var(--dark-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--dark-color);
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.work-card {
    background: white;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.work-card:hover {
    transform: translateY(-10px);
}

.work-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.work-card .info {
    padding: 25px;
}

.work-card h3 {
    margin: 0;
    font-size: 22px;
}

.work-card p {
    color: #999;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

/* Services Sections on Home */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    background: var(--light-gray);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin: 0;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: uppercase;
}

.footer-col p {
    color: #bbb;
    font-size: 14px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Forms */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    grid-column: span 2;
    height: 150px;
}

.contact-form button {
    grid-column: span 2;
    cursor: pointer;
    border: none;
}

/* Responsive */
@media (max-width: 992px) {
    .service-row, .service-row:nth-child(even) {
        flex-direction: column;
    }
    .hero h1 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr; }
}
