/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4a6;
    --gold-dark: #b8941f;
    --charcoal: #2c2c2c;
    --charcoal-light: #404040;
    --text-primary: #000000;
    --text-secondary: #666666;
    --background: #ffffff;
    --surface: #fafafa;
    --border: #e0e0e0;
}

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

.container {
    min-height: 100vh;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    position: relative;
}

.logo-section {
    margin-bottom: 40px;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-image {
    transform: scale(1.05);
}

.firm-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    width: 100%;
}

/* Development Notice */
.development-notice {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 0 0 40px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.development-notice.top-banner {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light));
    color: #ffffff;
    padding: 12px 40px;
    box-shadow: 0 2px 8px rgba(44, 44, 44, 0.1);
}

.top-banner .notice-content {
    color: #ffffff;
    font-size: 0.9rem;
    max-width: none;
    margin: 0;
}

.top-banner .notice-content i {
    color: var(--gold-primary);
    font-size: 14px;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.notice-content i {
    color: #495057;
    font-size: 16px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f1f5f9 100%);
    padding: 80px 40px;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--gold-primary);
    margin-bottom: 0;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 50px;
}

.lawyer-profile {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.profile-header {
    display: flex;
    align-items: start;
    gap: 40px;
    margin-bottom: 30px;
}

.profile-photo {
    width: 320px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--charcoal);
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.15);
}

.lawyer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding-top: 10px;
}

.profile-placeholder {
    width: 80px;
    height: 80px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.profile-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.lawyer-title {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 5px;
    font-weight: 500;
}

.lawyer-credentials {
    font-size: 0.9rem;
    color: #777777;
    font-style: italic;
    margin-bottom: 15px;
}

.profile-description {
    line-height: 1.7;
    color: #444444;
    font-size: 1rem;
    margin-bottom: 15px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    margin-top: 25px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1);
}

.expertise-item i {
    color: var(--gold-dark);
    font-size: 18px;
    width: 20px;
}

.expertise-item span {
    font-weight: 500;
    color: #333333;
}

.notable-experience {
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--gold-primary);
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.notable-experience::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.experience-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.experience-icon {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.experience-header h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.experience-content {
    margin-top: 20px;
}

.experience-highlight {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.highlight-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-text h6 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 5px 0;
}

.highlight-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive adjustments for notable experience */
@media (max-width: 768px) {
    .notable-experience {
        padding: 20px;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .experience-header h5 {
        font-size: 1.1rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: left;
        gap: 10px;
    }

    .highlight-item i {
        font-size: 1.1rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
    padding: 80px 40px;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--gold-primary);
    text-align: center;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.03);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 40px;
}

/* Unified Contact Container */
.unified-contact-container {
    background-color: transparent;
    padding: 40px 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Vertical Divider */
.unified-contact-container::before {
    display: none;
}

/* Address and Map Section */
.address-map-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-right: 0;
}

.address-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.map-container iframe:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Details Section */
.contact-details-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 0;
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-item.office-hours {
    margin-top: 0;
    padding-top: 15px;
}

.contact-item:hover {
    background-color: #f8f9fa;
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666666 !important;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #000000 !important;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--charcoal);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: var(--gold-dark);
    transform: scale(1.05);
}

.contact-details {
    text-align: left;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
}

.contact-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.contact-details p {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.contact-details a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--charcoal);
    text-decoration: underline;
}

.availability-note {
    background: rgba(248, 250, 252, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.7);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
}

.availability-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.availability-note i {
    margin-right: 8px;
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.availability-note strong {
    color: var(--charcoal);
    font-weight: 500;
}

/* Responsive adjustments for availability note */
@media (max-width: 768px) {
    .availability-note {
        padding: 12px 16px;
        margin-top: 20px;
    }

    .availability-note p {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    padding: 25px 40px;
    border-top: 1px solid var(--gold-primary);
    margin-top: auto;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.social-links {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-left p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.developer-credit {
    font-size: 0.85rem !important;
    color: #cccccc !important;
}

.developer-credit a {
    color: var(--gold-light) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: var(--gold-primary) !important;
    text-decoration: underline;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    color: var(--charcoal);
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.scale {
    position: absolute;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.scale-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.scale-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.scale-3 {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .header {
        padding: 40px 20px 30px;
    }

    .firm-name {
        font-size: 2.5rem;
    }

    .about-section {
        padding: 60px 20px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .footer {
        padding: 20px;
    }

    .development-notice.top-banner {
        padding: 12px 20px;
    }

    .development-notice {
        margin-bottom: 30px;
    }

    .top-banner .notice-content {
        flex-direction: column;
        gap: 8px;
        font-size: 0.85rem;
        padding: 0;
    }    .about-title {
        font-size: 1.8rem;
    }

    .profile-header {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        min-height: auto;
    }

    .profile-photo {
        width: 240px;
        height: 270px;
        border-radius: 20px;
        align-self: center;
    }

    .profile-info {
        align-items: center;
        text-align: center;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .unified-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 0;
    }

    .unified-contact-container::before {
        display: none;
    }

    .address-map-section {
        gap: 20px;
        padding-right: 0;
        padding-bottom: 25px;
        border-bottom: 1px solid #e0e0e0;
    }

    .map-container iframe {
        height: 200px;
    }

    .contact-details-section {
        padding-left: 0;
        padding-top: 5px;
        gap: 25px;
    }

    .contact-row {
        gap: 20px;
    }

    .contact-item.office-hours {
        margin-top: 0;
        padding: 15px;
        padding-top: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-left {
        text-align: center;
    }

    .footer-center {
        order: 2;
    }

    .social-links {
        order: 3;
    }

    .logo-image {
        width: 100px;
        height: 100px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .profile-header {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 18px;
        margin-top: 20px;
    }

    .profile-photo {
        width: 260px;
        height: 350px;
        align-self: center;
    }
}@media (max-width: 480px) {
    .header {
        padding: 30px 15px 25px;
    }

    .about-section {
        padding: 50px 15px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .footer {
        padding: 18px 15px;
    }

    .development-notice.top-banner {
        padding: 10px 15px;
    }

    .firm-name {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .profile-header {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .profile-photo {
        width: 200px;
        height: 275px;
        border-radius: 20px;
        align-self: center;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
        margin-top: 20px;
    }

    .profile-placeholder {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .profile-info h4 {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        padding: 10px;
    }

    .unified-contact-container {
        padding: 25px 0;
    }

    .address-map-section {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .address-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .map-container iframe {
        height: 180px;
    }

    .contact-details-section {
        padding-left: 0;
        padding-top: 5px;
        gap: 20px;
    }

    .contact-row {
        gap: 15px;
    }

    .contact-item.office-hours {
        padding: 12px 10px;
        margin-top: 0;
        padding-top: 12px;
    }

    .contact-details {
        text-align: center;
    }
}
