* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --dark-gray: #2c2c2c;
    --light-gray: #e5e5e5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
}

.language-toggle {
    display: flex;
    gap: 0.3rem;
    margin-left: 2rem;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: 1px solid #cccccc;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    min-width: 35px;
}

.lang-btn:hover {
    border-color: #000000;
    color: #000000;
    background: #f5f5f5;
}

.lang-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
}

/* Header Contact Info */
.header-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-left: 2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333333;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #000000;
}

.contact-icon {
    font-size: 1rem;
}

.contact-text {
    font-weight: 400;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8rem;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: right;
    color: #ffffff;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.hero-title-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hero-word {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title-group:nth-child(1) .hero-word:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title-group:nth-child(1) .hero-word:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title-group:nth-child(2) .hero-word:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-title-group:nth-child(2) .hero-word:nth-child(2) {
    animation-delay: 0.7s;
}

.hero-title-group:nth-child(3) .hero-word:nth-child(1) {
    animation-delay: 0.9s;
}

.hero-title-group:nth-child(3) .hero-word:nth-child(2) {
    animation-delay: 1.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 4rem;
    }
    
    .hero-content {
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-word {
        font-size: clamp(1.2rem, 5vw, 2rem);
        letter-spacing: 0.03em;
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    padding: 2rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.btn-learn-more,
.btn-explore,
.btn-practice-areas {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-learn-more:hover,
.btn-explore:hover,
.btn-practice-areas:hover {
    background: transparent;
    color: var(--primary-color);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: #ffffff;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.founder-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.founder-image:hover .founder-img {
    transform: scale(1.05);
}

.founder-info {
    padding: 1rem 0;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.founder-name strong {
    font-weight: 700;
}

.founder-title {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
}

.founder-description p {
    margin-bottom: 1.5rem;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.3;
}

.section-main-title strong {
    font-weight: 700;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-name strong {
    font-weight: 700;
}

.member-role {
    font-size: 0.9rem;
    color: #666;
}

.team-actions {
    text-align: center;
}

/* Excellence Section */
.excellence-section {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.excellence-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.excellence-title .line {
    display: block;
}

.excellence-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.excellence-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-practice-areas {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-practice-areas:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Practice Areas Section */
.practice-areas-section {
    padding: 6rem 0;
    background: var(--white);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.practice-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.practice-item:hover {
    transform: translateY(-5px);
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.practice-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.practice-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f8f8f8;
}

.contact-simple {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.contact-info-link {
    text-decoration: none;
    color: #333333;
    text-align: center;
    transition: transform 0.2s ease;
}

.contact-info-link:hover {
    transform: translateY(-3px);
}

.contact-info-link h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-info-link p {
    color: #666666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Map Container */
.map-container {
    margin-top: 4rem;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.map-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        padding: 1.5rem 2rem;
        gap: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        background: #ffffff;
        border-top: 1px solid #e5e5e5;
    }

    .nav-links.active a {
        color: #000000;
        padding: 0.8rem 0;
        border-bottom: 1px solid #f5f5f5;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .founder-name {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .member-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .excellence-title {
        font-size: 2rem;
    }

    .practice-grid {
        grid-template-columns: 1fr;
    }

    .language-toggle {
        margin-left: 1rem;
        gap: 0.25rem;
    }

    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        min-width: 30px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .header-contact {
        display: none;
    }

    .contact-simple {
        flex-direction: column;
        gap: 2rem;
    }

    .map-container {
        margin-top: 2rem;
    }

    .google-map {
        height: 300px;
    }
}
