* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    background-color: #002F34;
    line-height: 1.6; 
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 20px 80px;
    max-width: 1700px; 
    margin: 0 auto;
}

.header-container .logo {
    height: 160px !important;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-left: auto; 
    padding-left: 20px;
}

.social-media img {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1); 
}

.social-media img:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(70%) sepia(50%) saturate(1000%) hue-rotate(360deg); /* Orange on hover */
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {    
    height: 160px !important;
    width: auto;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 20px 0;
    }
    
    .social-media {
        margin: 20px auto 0;
        padding-left: 0;
    }
    
    nav {
        position: static;
        transform: none;
        margin: 20px 0;
    }
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    font-size: 18px; 
    margin: 0 30px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #C75A00;
}

h1, h2, h3 {
    font-weight: 700;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.nationwide-highlight {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.95;
    letter-spacing: 0.05em;
    color: #FFFFFF;
}

.divider {
    width: 100px;
    height: 3px;
    background-color: #C75A00;
    margin: 2rem auto;
    transform: scaleX(0);
    animation: growFromCenter 0.5s ease-out forwards;
}

@keyframes growFromCenter {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.practice-areas {
    padding: 100px 20px;
    background-color: #001A1C;
}

.practice-areas h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.divider-practice {
    width: 80px;
    height: 2px;
    background-color: #C75A00;
    margin: 0 auto 50px;
}

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

.area-column h3 {
    font-size: 1.1rem;
    color: #C75A00;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 10px;
}

.area-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(199, 90, 0, 0.5);
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    opacity: 0.9;
}

.area-column li:before {
    color: #C75A00;
    margin-right: 8px;
}

.extra-info {
    text-align: center;
    margin-top: 40px;
    color: #FFFFFF;
}

.more-areas {
    font-size: 1rem;
    color: #C75A00;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .areas-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .area-column {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 30px;
    }
    
    .area-column:last-child {
        border-bottom: none;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
    
}

.whatsapp-btn:hover {
    transform: scale(1.05);
}

.whatsapp-btn img {
    width: 35px; 
    height: 35px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
}

.about-section {
    padding: 40px 20px;
    background-color: #002F34;
}


.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;  
    align-items: center;
    padding: 40px 20px;
    

}

.about-text h2 {
    font-size: 50px;
    letter-spacing: 0.15em;
}

.container-title {
    text-align: center;
    margin-bottom: 30px;
}

.container-title h2 {
    font-size: 3rem;
    letter-spacing: 0.15em;
}

.container-title .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.05em;
    margin-top: 0;
    text-transform: none; 
}

.about-text h3 {
    font-size: 1.3rem;
    color: #C75A00;
    margin: 30px 0 15px;
    letter-spacing: 0.1em;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.85;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.values-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.about-image img {
    width: 180%;
    max-width: 700px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin: 0 auto;
    display: block;
}

.mvv-section {
    background-color: #002F34;
    padding: 60px 20px 40px;
    text-align: center;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    color: #FFFFFF;
}

.mvv-item h3 {
    font-size: 1.3rem;
    color: #C75A00;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.mvv-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mvv-item ul {
    padding: 0;
    list-style: none;
}

.mvv-item li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.cta-section {
    background-color: #001A1C;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #C75A00;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e66908;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

.hero-contact {
    min-height:20vh;
    display: flex;
    align-items: center;
    padding: 50px 20px;
    font-size: 2em;
}


.contact-section-simple {
    padding: 20px;
    background-color: #002F34;
    text-align: center;
}

.contact-section-simple h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.15em;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0px auto 0;
}

.contact-card {
    background-color: #001A1C;
    padding: 30px;
    border-radius: 5px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-svg {
    width: 40px;
    height: 40px;
    fill: #C75A00;
    filter: brightness(0) invert(1);
}

.contact-card h3 {
    color: #C75A00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.contact-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
    word-break: break-word;
}

.email-text {
    word-break: break-all;
}

.contact-link {
    display: inline-block;
    color: #C75A00;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #C75A00;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 10px;
}

.contact-link:hover {
    background-color: #C75A00;
    color: white;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .email-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px 20px;
    }
    
    .logo {
        height: 100px !important;
        margin-bottom: 15px;
    }
    
    nav {
        position: static;
        transform: none;
        margin: 15px 0;
        width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    nav ul li {
        margin: 5px 0;
        font-size: 16px;
    }
    
    .social-media {
        margin: 15px auto 0;
        padding-left: 0;
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .about-image {
        display: none; 
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .container-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .whatsapp-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn img {
        width: 25px;
        height: 25px;
    }
    
    .hero {
        min-height: 50vh;
        padding-top: 30px;
    }
    
    .practice-areas {
        padding: 50px 20px;
    }
}

.mobile-hide {
    display: block;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none;
    }
}

.hamburger {
    display: none; 
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: transform 0.2s;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    top: 8px;
}

.hamburger.active .hamburger-inner {
    background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .logo {
        height: 80px !important;
        order: 1;
    }
    
    .hamburger {
        display: block;
        order: 2;
        margin-left: auto;
    }
    
    .social-media {
        order: 3;
        width: 100%;
        margin: 10px 0 0;
        justify-content: center;
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #002F34;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        color: white;
    }
    
    .main-nav.active ~ .social-media {
        display: flex;
        position: fixed;
        bottom: 30px;
        left: 0;
        right: 0;
    }
}