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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #ffffff;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.nav-logo span {
    font-size: 0.7rem;
    font-weight: 300;
    color: #888;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-phone svg {
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Section */
.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    background: #1a1a1a;
}

.main-content {
    max-width: 1200px;
    width: 100%;
}

.main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.main-title {
    text-align: center;
}

.main-title h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1;
}

.main-title h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 6px;
    color: #888;
    margin: 1rem 0 0 0;
}

.main-divider {
    width: 1px;
    height: 60px;
    background: #333;
}

.main-info {
    text-align: center;
}

.main-info p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #ccc;
    letter-spacing: 2px;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #222;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.about-description p {
    margin-bottom: 1.5rem;
}

.about-description strong {
    color: #ffffff;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1a1a1a;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    background: #2a2a2a;
    padding: 2.5rem 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    background: #333;
    border-color: #555;
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon svg {
    color: #ffffff;
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #bbb;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #222;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.lawyer-info {
    margin: 3rem 0;
    padding: 2rem;
    background: #2a2a2a;
    border: 1px solid #333;
    border-left: 4px solid #666;
}

.lawyer-info h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.lawyer-info .title {
    color: #888;
    font-style: italic;
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-item strong {
    color: #ffffff;
    min-width: 80px;
    padding-top: 0.2rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    background: #2a2a2a;
    padding: 3rem;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #444;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
    background: #222;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    background: #333;
    color: #ffffff;
    border: 1px solid #555;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button[type="submit"]:hover {
    background: #444;
    border-color: #666;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

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

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-brand p {
    color: #888;
}

.footer-services h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    color: #ccc;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-services li:hover {
    color: #ffffff;
    cursor: pointer;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-container {
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .nav-phone {
        order: 2;
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        gap: 0.4rem;
        flex: 1;
        justify-content: center;
        max-width: 200px;
    }

    .nav-phone span {
        font-size: 0.85rem;
    }

    .nav-phone svg {
        width: 16px;
        height: 16px;
    }

    .nav-logo {
        order: 1;
    }

    .hamburger {
        order: 3;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 8rem 1rem 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about,
    .services,
    .contact {
        padding: 4rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
}

/* Remove all animations and effects */
.service-card {
    animation: none;
}

/* Simple, clean focus states */
.nav-menu a.active {
    color: #ffffff !important;
}

.nav-menu a.active::after {
    width: 100% !important;
}

/* Clean scroll behavior */
html {
    scroll-padding-top: 80px;
}

/* Remove gradient backgrounds */
.hero {
    background: #1a1a1a;
}

.about {
    background: #222;
}

.services {
    background: #1a1a1a;
}

.contact {
    background: #222;
}