:root {
    --gold: #DCA93A;
    --gold-hover: #C5932F;
    --black: #000000;
    --white: #FFFFFF;
    --bg-dark: #000000;
    --bg-light: #F8F9FA;
    --text-main: #333333;
    --text-muted: #666666;
    --header-height: 85px;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

section {
    padding: 100px 0;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--black);
    height: 70px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.btn-contact:hover, .hero-btn:hover {
    transform: scale(1.05);
    background: var(--gold-hover);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/3333.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding-top: var(--header-height);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.9);
}

.hero-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: var(--transition);
}

/* --- Services Ribbon --- */
.ribbon-item {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--white);
}

/* --- About --- */
.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--gold);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about .badge {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.icon-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.icon-item::before {
    content: '✓';
    color: var(--gold);
    font-weight: 900;
}

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

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

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

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 65px;
    height: 65px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle img {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Testimonials --- */
.testimonials {
    background: var(--bg-dark);
    color: var(--white);
    text-align: center;
}

.testimonial-slider {
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonial-card p {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
}

.client-info {
    margin-top: 30px;
}

.client-info h4 {
    color: var(--gold);
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
    display: block;
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

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

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

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

/* --- Mobile --- */
.mobile-toggle {
    display: none;
}

@media (max-width: 992px) {
    .nav { display: none; }
    .about .container { grid-template-columns: 1fr; }
    .services-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .services-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
