/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 1rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-branding {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.4));
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    font-family: var(--font-inter);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-bottom: 4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-link {
    display: inline-block;
    color: var(--gold);
    animation: bounce 2s infinite;
}

.scroll-link i {
    width: 32px;
    height: 32px;
}

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

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
    background-color: var(--background);
}

.partners-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    background: var(--secondary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s ease;
}

.partner-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.partner-image-wrapper {
    position: relative;
}

.partner-image {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-elegant);
}

.partner-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-name {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.partner-title {
    color: var(--muted-foreground);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partner-bio {
    color: var(--foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   PRACTICE AREAS SECTION
   ============================================ */

.practice-areas-section {
    background-color: var(--secondary);
}

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

.area-card {
    background: var(--background);
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-elegant);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.area-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.area-card:hover .area-icon {
    background: rgba(212, 175, 55, 0.1);
}

.area-icon i {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.area-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.area-card:hover .area-title {
    color: var(--gold);
}

.area-description {
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    background-color: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--secondary);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-5px);
}

.testimonial-quote i {
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: var(--shadow-elegant);
}

.trust-icon i {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

.trust-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--muted-foreground);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background-color: var(--secondary);
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary-foreground);
}

.contact-item-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

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

.contact-item-text a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.contact-item-text a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--background);
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-elegant);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-control {
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: var(--font-inter);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background);
    color: var(--foreground);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--muted-foreground);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
}

.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(22, 163, 74);
    border: 1px solid rgb(34, 197, 94);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: rgb(220, 38, 38);
    border: 1px solid rgb(239, 68, 68);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: var(--foreground);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    width: 60px;
    height: auto;
}

.footer-logo .logo-text {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-link i {
    width: 24px;
    height: 24px;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.oab-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 64px;
    height: 64px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: glow 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.whatsapp-button i {
    width: 32px;
    height: 32px;
    color: var(--primary-foreground);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--foreground);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
    box-shadow: var(--shadow-elegant);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .partner-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partner-image-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-button i {
        width: 28px;
        height: 28px;
    }
    
    .hero-logo {
        width: 80px;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
}