:root {
    --primary: #c29867;
    --primary-dark: #a67c52;
    --secondary: #1f2937;
    --text-main: #374151;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --accent: #e5e7eb;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--secondary); line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; position: relative; display: inline-block; }
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60px; height: 4px; background: var(--primary); border-radius: 2px; }
.section-subtitle { font-size: 1.125rem; color: var(--text-light); margin-top: 1.5rem; max-width: 600px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 4px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; transition: var(--transition); border: none; }
.btn-primary { background-color: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(194, 152, 103, 0.4); }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(194, 152, 103, 0.5); }
.btn-secondary { background-color: transparent; color: #fff; border: 2px solid #fff; }
.btn-secondary:hover { background-color: #fff; color: var(--secondary); transform: translateY(-2px); }
.btn-text { padding: 0; color: var(--primary); font-weight: 700; }
.btn-text:hover { color: var(--primary-dark); transform: translateX(5px); }
.btn-full { width: 100%; }

.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1.5rem 0; transition: var(--transition); }
.navbar.scrolled { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: var(--shadow-sm); }
.navbar.scrolled .logo-text, .navbar.scrolled .logo-subtext { color: var(--secondary); }
.navbar.scrolled .nav-links a:not(.btn) { color: var(--text-main); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: column; }
.logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: #fff; line-height: 1; }
.logo-subtext { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; color: #fff; opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) { font-weight: 500; color: #fff; font-size: 0.95rem; transition: var(--transition); position: relative; }
.nav-links a:not(.btn)::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.mobile-menu-btn { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { width: 25px; height: 2px; background-color: #fff; transition: var(--transition); }
.navbar.scrolled .mobile-menu-btn span { background-color: var(--secondary); }

.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4)); }
.hero-content { color: #fff; max-width: 800px; }
.hero-title { font-size: 4rem; color: #fff; margin-bottom: 1.5rem; animation: fadeUp 1s ease forwards; opacity: 0; transform: translateY(20px); }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 1s ease 0.2s forwards; transform: translateY(20px); max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; opacity: 0; animation: fadeUp 1s ease 0.4s forwards; transform: translateY(20px); }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.about { padding: 6rem 0; background-color: var(--bg-white); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: #fff; padding: 2rem; border-radius: 50%; width: 150px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-md); transform: translate(-40px, -40px); }
.badge-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; margin-top: 0.25rem; }
.about-text p { margin-top: 1.5rem; font-size: 1.1rem; }
.thank-you { font-weight: 600; color: var(--secondary); font-style: italic; margin-top: 2rem !important; }

.services { padding: 6rem 0; background-color: var(--bg-light); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-title::after { left: 50%; transform: translateX(-50%); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.service-card { background: var(--bg-white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--accent); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img-wrapper { position: relative; height: 240px; overflow: hidden; }
.service-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-img-wrapper img { transform: scale(1.05); }
.service-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); opacity: 0; transition: var(--transition); }
.service-card:hover .service-overlay { opacity: 1; }
.service-content { padding: 2rem; }
.service-content h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-content p { color: var(--text-light); margin-bottom: 1.5rem; }

.footer { background-color: #111827; color: #9ca3af; padding: 5rem 0 2rem; }
.footer-container { display: grid; grid-template-columns: 2fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { padding-right: 2rem; }
.footer-form h4 { color: #fff; font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem 1rem; border-radius: 4px; border: 1px solid #374151; background: #1f2937; color: #fff; font-family: var(--font-body); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.form-success { display: none; color: #10b981; font-size: 0.875rem; margin-top: 0.5rem; }

/* Reviews Section */
.reviews { padding: 6rem 0; background-color: var(--bg-white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.review-card { background: var(--bg-light); padding: 2.5rem 2rem; border-radius: 8px; box-shadow: var(--shadow-sm); border: 1px solid var(--accent); display: flex; flex-direction: column; justify-content: space-between; transition: var(--transition); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.stars { color: #f59e0b; font-size: 1.25rem; margin-bottom: 1.25rem; letter-spacing: 3px; }
.review-text { font-style: italic; color: var(--text-main); margin-bottom: 2rem; flex-grow: 1; line-height: 1.7; font-size: 0.95rem;}
.review-author { font-weight: 600; color: var(--secondary); font-size: 0.95rem; }
.reviews-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.reviews-actions .btn-secondary { border-color: var(--primary); color: var(--primary); background: transparent; }
.reviews-actions .btn-secondary:hover { background: var(--primary); color: white; }
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .about-image { max-width: 600px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-white); flex-direction: column; padding: 2rem; gap: 1.5rem; box-shadow: var(--shadow-md); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out; }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a:not(.btn) { color: var(--secondary); }
    .mobile-menu-btn { display: flex; }
    .navbar.scrolled .mobile-menu-btn span { background: var(--secondary); }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; gap: 3rem; }
}
