@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --gold-primary: #A37F2C; /* Luxury gold/bronze optimized for light mode readability */
    --gold-secondary: #856926;
    --gold-light: #D5BE8A;
    --gold-dark: #66501C;
    --text-primary: #0F172A; /* Slate 900 */
    --text-secondary: #334155; /* Slate 700 */
    --text-muted: #64748B; /* Slate 500 */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(163, 127, 44, 0.15);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 0 20px rgba(163, 127, 44, 0.08);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 1px;
}

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

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}

/* --- REUSABLE UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-title p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    padding: 0.85rem 2.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #FFFFFF;
    border: 1px solid #059669;
    box-shadow: var(--shadow-premium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #10b981, #34d399);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-smooth);
    flex-wrap: nowrap;
}

header.scrolled .container {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.08);
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    font-weight: 800;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.8rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

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

.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    margin-left: 1.5rem;
}

.nav-btn .btn {
    font-size: 0.71rem;
    padding: 0.7rem 1.8rem;
}

/* --- MOBILE MENU --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F1F5F9 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1.4s forwards;
}

.hero-mascot-logo {
    max-width: 100%;
    height: auto;
    max-height: 440px;
    mix-blend-mode: multiply;
    transition: var(--transition-smooth);
}

.hero-mascot-logo:hover {
    transform: translateY(-8px) scale(1.02);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: fadeInDown 1s forwards;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
    animation: fadeInUp 1.2s forwards;
}

.hero-content h1 span {
    color: var(--gold-primary);
    background: linear-gradient(120deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.6s forwards;
}

/* --- STATS SECTION --- */
.stats {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
}

/* --- PRACTICE AREAS --- */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.practice-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.practice-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.practice-card:hover {
    transform: translateY(-10px);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-premium), var(--shadow-gold);
}

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

.practice-card:hover::after {
    width: 100%;
}

.practice-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    display: inline-block;
}

.practice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.practice-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.practice-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.practice-link i {
    transition: var(--transition-smooth);
}

.practice-card:hover .practice-link i {
    transform: translateX(5px);
}

/* --- ABOUT SECTION SNIPPET --- */
.about-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
}

.about-img-container {
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
}

.about-img-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    border-top: 2px solid var(--gold-primary);
    border-left: 2px solid var(--gold-primary);
}

.about-img-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    border-bottom: 2px solid var(--gold-primary);
    border-right: 2px solid var(--gold-primary);
}

.about-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: grayscale(40%) contrast(110%);
    transition: var(--transition-smooth);
}

.about-img-container:hover .about-image {
    filter: grayscale(0%) contrast(100%);
}

.about-text-content h3 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.about-text-content p {
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
}

.about-signature {
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sig-name h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.sig-name p {
    font-size: 0.85rem;
    color: var(--gold-secondary);
    margin-bottom: 0;
}

.signature-font {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--gold-primary);
}

/* --- TESTIMONIAL CAROUSEL --- */
.testimonials {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.2;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-weight: 300;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.client-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background-color: var(--gold-primary);
    transform: scale(1.3);
}

/* --- FOOTER --- */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 6rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--gold-primary);
}

.footer-about p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

/* --- ABOUT PAGE STYLES --- */
.inner-hero {
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.97)), url('../images/hero-bg.png') no-repeat center center/cover;
    border-bottom: 1px solid var(--glass-border);
    padding-top: 90px;
}

.inner-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--gold-secondary);
}

.breadcrumbs span {
    color: var(--text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
}

/* --- ATTORNEY TEAM --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.team-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    transition: var(--transition-smooth);
}

.team-card:hover {
    border-color: var(--glass-border);
    box-shadow: var(--shadow-premium), var(--shadow-gold);
    transform: translateY(-5px);
}

.team-img-wrapper {
    flex: 1.5;
    overflow: hidden;
    position: relative;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-info {
    flex: 1.5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.team-title {
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.team-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1.2rem;
}

.team-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-social a:hover {
    color: var(--gold-primary);
}

/* --- PRACTICE PAGE STYLES --- */
.practice-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
    list-style: none;
}

.practice-tab-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.practice-tab-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.practice-tab-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-premium);
}

.practices-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.practice-detail-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 4rem;
    transition: var(--transition-smooth);
}

.practice-detail-item:hover {
    border-color: var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.practice-detail-item:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.practice-detail-item:nth-child(even) .practice-detail-content {
    order: 2;
}

.practice-detail-item:nth-child(even) .practice-detail-image-wrapper {
    order: 1;
}

.practice-detail-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--glass-border);
}

.practice-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%) contrast(110%);
}

.practice-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.practice-detail-content p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.services-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.service-tag {
    background: var(--bg-tertiary);
    color: var(--gold-secondary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info-panel {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 4rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-panel p {
    margin-bottom: 3rem;
    font-size: 0.95rem;
}

.contact-details-list {
    list-style: none;
    margin-bottom: 4rem;
}

.contact-detail-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-detail-row i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-top: 0.2rem;
}

.contact-detail-row h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-detail-row p {
    margin-bottom: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-map-container {
    width: 100%;
    height: 280px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-premium);
}

/* --- APPOINTMENT FORM --- */
.contact-form-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 4rem;
    box-shadow: var(--shadow-premium), var(--shadow-gold);
    position: relative;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.form-control {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(163, 127, 44, 0.15);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1.2rem) center;
    padding-right: 3rem;
}

input[type="date"].form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23A37F2C' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 1.2rem) center;
    background-size: 1.1rem;
    padding-right: 3rem;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 2;
}

textarea.form-control {
    resize: none;
}

.form-submit-row {
    margin-top: 1rem;
}

/* --- FORM SUCCESS OVERLAY --- */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 10;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.05);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--glass-border);
}

.form-success-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.form-success-overlay p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 450px;
    margin-bottom: 2rem;
}

.booking-summary-box {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 4px;
    text-align: left;
    width: 100%;
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.booking-summary-row:last-child {
    margin-bottom: 0;
}

.booking-summary-label {
    color: var(--gold-secondary);
    font-weight: 600;
}

.booking-summary-val {
    color: var(--text-primary);
}

/* --- ANIMATIONS --- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* --- SCROLL REVEAL ANIMATION --- */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-mascot-logo {
        max-height: 320px;
    }
    
    .logo-text {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }
    
    .logo-icon {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 42px;
        width: auto;
    }
    
    .nav-links {
        gap: 1.1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
    
    .nav-btn {
        margin-left: 0.8rem;
    }
    
    .nav-btn .btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.68rem;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1.5rem;
    }
    
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-img-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .practice-detail-item,
    .practice-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .practice-detail-item:nth-child(even) .practice-detail-content {
        order: 2;
    }
    
    .practice-detail-item:nth-child(even) .practice-detail-image-wrapper {
        order: 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header .container {
        height: 75px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        margin-bottom: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .practice-nav-tabs {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .practice-tab-btn {
        text-align: center;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-panel {
        padding: 2.5rem 1.5rem;
    }
    
    .team-card {
        flex-direction: column;
    }
    
    .team-img-wrapper {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* --- WHATSAPP INTEGRATION --- */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF !important;
    border: 1px solid #128C7E;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #FFFFFF !important;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    color: #FFF;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #25D366;
    border-radius: 50%;
    opacity: 0.8;
    animation: wa-pulse 2s infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* Tooltip for floating whatsapp */
.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--glass-border);
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .whatsapp-float .wa-tooltip {
        display: none;
    }
}

/* --- OTHER VENTURES PAGE --- */
.ventures-intro {
    padding: 6rem 0 3rem 0;
    text-align: center;
}

.ventures-intro h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.ventures-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.venture-card {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(163, 127, 44, 0.08);
    border-color: var(--gold-light);
}

.venture-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(163, 127, 44, 0.08);
    color: var(--gold-primary);
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    border: 1px solid rgba(163, 127, 44, 0.15);
}

.venture-badge.tech {
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    border-color: rgba(16, 185, 129, 0.15);
}

.venture-badge.paints {
    background: rgba(249, 115, 22, 0.08);
    color: #F97316;
    border-color: rgba(249, 115, 22, 0.15);
}

.venture-badge.travel {
    background: rgba(6, 182, 212, 0.08);
    color: #06B6D4;
    border-color: rgba(6, 182, 212, 0.15);
}

.venture-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    width: 70px;
    height: 70px;
    background: rgba(163, 127, 44, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.venture-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #FFFFFF;
    transition: var(--transition-smooth);
}

.venture-card:hover .venture-icon {
    background: var(--gold-primary);
    color: #FFF;
    transform: scale(1.05);
}

.venture-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.venture-founder {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.venture-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.venture-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.venture-highlights li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.venture-highlights li i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.venture-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-venture-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFF !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-venture-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.btn-venture-visit {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-venture-visit:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(163, 127, 44, 0.02);
}


