:root {
    /* Color Palette */
    --primary-dark: #0f1c2e; /* Deep Navy */
    --primary-light: #182b45;
    --gold: #c39c5b; /* Elegant Gold */
    --gold-light: #dcc28a;
    --bg-light: #f4f2ec; /* Warm Off-white / Cream */
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .hero-subtitle {
    font-family: 'Playfair Display', serif;
}

/* --- Navbar --- */
.navbar {
    background-color: #E1D9CE;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-img-footer {
    height: 70px;
    width: auto;
    object-fit: contain;
    background-color: var(--bg-light);
    padding: 10px 15px;
    border-radius: 8px;
}

.btn-contact {
    background-color: var(--primary-dark);
    color: var(--gold);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid var(--gold);
}

.btn-contact:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(195, 156, 91, 0.3);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: auto;
    min-height: 700px;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

/* Background image placeholder - representing legal/office environment */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    filter: grayscale(50%);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(15, 28, 46, 0.6) 0%, rgba(15, 28, 46, 0.95) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out forwards;
}

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

.hero-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(195, 156, 91, 0.2);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 2.2rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 25px;
}

.hero-divider {
    height: 2px;
    width: 80px;
    background-color: var(--gold);
    margin: 0 auto 30px;
}

.hero-text {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(195, 156, 91, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(195, 156, 91, 0.5);
    background-color: var(--gold-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--gold);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
}

/* --- Experience Section --- */
.experience {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(195, 156, 91, 0.2);
    padding: 35px 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.gold-bg {
    background: linear-gradient(135deg, var(--gold) 0%, #a6813e 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(195, 156, 91, 0.3);
}

.exp-text h3 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 5px;
}

.exp-text p {
    color: #64748b;
    font-weight: 500;
    font-size: 1.1rem;
}

/* --- Services --- */
.services {
    padding: 120px 5% 100px;
    text-align: center;
}

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

.section-title {
    color: var(--primary-dark);
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

.section-desc {
    color: #64748b;
    font-size: 1.1rem;
    margin-top: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(195, 156, 91, 0.05));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(195, 156, 91, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(195, 156, 91, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--gold);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--gold);
}

.service-card:hover .service-icon {
    color: white;
}

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

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 5%;
    background-color: white;
    text-align: center;
}

.testimonials-header {
    margin-bottom: 60px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.google-badge .fa-google {
    color: #4285F4;
    font-size: 1.5rem;
}

.google-badge .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FBBC05;
    font-size: 1.1rem;
}

.google-badge .rating span {
    color: var(--text-dark);
    font-weight: 700;
    margin-right: 5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.author-info .stars {
    color: #FBBC05;
    font-size: 0.85rem;
}

.testimonial-card p {
    color: #475569;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}

.google-icon-small {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #e2e8f0;
    font-size: 2rem;
    opacity: 0.5;
}

/* --- CTA Section --- */
.cta {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8e5dc 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(195, 156, 91, 0.2);
    border-bottom: 1px solid rgba(195, 156, 91, 0.2);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--primary-dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #475569;
}

.btn-whatsapp-large {
    background-color: #25D366; /* WhatsApp Brand Color */
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background-color: #20bd5a;
}

.btn-whatsapp-large i {
    font-size: 1.8rem;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 5% 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col.brand {
    flex: 1;
    min-width: 280px;
}

.footer-col.brand .footer-desc {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col.contact-info {
    flex: 1;
    min-width: 280px;
}

.footer-col.contact-info h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.footer-col.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-col.contact-info i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-col.contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col.contact-info a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: #64748b;
    font-size: 0.9rem;
}

/* --- Internal Pages --- */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hero-internal {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-internal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1589829085413-56de8ae18c73?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    filter: grayscale(50%);
}

.hero-internal-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-internal h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    margin-bottom: 10px;
}

.hero-internal p {
    font-size: 1.2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.service-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    padding: 50px 60px;
}

.service-content h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--gold);
}

.service-content h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.service-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    text-align: justify;
}

.service-content ul {
    margin-bottom: 30px;
    padding-left: 0;
    list-style-type: none;
}

.service-content li {
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #475569;
    padding-left: 30px;
    line-height: 1.6;
}

.service-content li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-content .intro-text {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 30px;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.6rem; }
    .experience-card { flex-direction: column; text-align: center; padding: 30px 20px; }
    .navbar { flex-direction: column; gap: 15px; padding: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline { width: 100%; justify-content: center; }
    .section-title, .cta h2 { font-size: 2.2rem; }
}
