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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-link i {
    font-size: 1.5em;
}

.logo-text-mobile {
    display: none;
}

.logo-text-full {
    display: inline;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
}

.nav-links a i {
    font-size: 1rem;
}

.nav-links a:hover {
    color: #c0392b;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
    padding: 0 1rem 4rem 1rem;
    position: relative;
}

.hero-content-top {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content-top p {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    flex: 1;
}

.hero-content-bottom {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0 auto;
    text-align: center;
}

.hero-content-bottom h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    flex: 1;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

/* Practice Areas Section */
.practice-areas {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.practice-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.practice-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.practice-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.practice-card i {
    font-size: 2.5rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.practice-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.3;
    min-height: 2.6rem;
}

.practice-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.practice-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.practice-card-link:hover {
    text-decoration: none;
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
    .practice-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-card {
        padding: 1.5rem;
    }
    
    .practice-card h3 {
        min-height: auto;
    }
}

/* About Section */
.about {
    padding: 5rem 1rem;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.contact-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-info {
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #c0392b;
    margin-right: 1rem;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #c0392b;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #a93226;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 1rem 1rem;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-info h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    width: 100%;
}

.footer-info p i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: #fff;
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.footer-links a:hover {
    color: #c5a47e;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-phone-link,
.footer-email-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone-link:hover,
.footer-email-link:hover {
    color: #c5a47e;
}

.footer-address-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address-link:hover {
    color: #c5a47e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

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

    .footer-info h3 {
        justify-content: center;
        width: 100%;
    }

    .footer-info p {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-info p i {
        margin: 0 0 0.5rem 0;
        display: block;
    }

    .footer-links {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .footer-links a {
        display: none;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .logo-text-full {
        display: none;
    }

    .logo-text-mobile {
        display: inline;
    }
}

@media (min-width: 769px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        visibility: visible;
        opacity: 1;
        height: auto;
        overflow: visible;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 1001;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu a i {
    font-size: 1.25rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Page Header */
/* Breadcrumb Navigation */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5.5rem 1rem 1rem;
    background-color: #fff;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: #999;
}

.breadcrumb a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c0392b;
}

.breadcrumb span {
    color: #666;
}

.page-header {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 1rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #fff;
}

.page-header .phone-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .phone-link:hover {
    color: #c5a47e;
}

/* Contact Page */
.contact-page {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-info-card h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

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

.contact-item i {
    font-size: 1.5rem;
    color: #c0392b;
    margin-top: 0.5rem;
}

.contact-text h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.address-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    color: #c0392b;
}

.phone-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #c0392b;
}

.email-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #c0392b;
}

.contact-form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 0rem;
    }
    .contact-page-content {
        grid-template-columns: 1fr;
    }
    
    .contact-image-container {
        margin-top: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Divorce Page Styles */
.divorce-content {
    padding: 4rem 1rem;
    background-color: #fff;
}

.divorce-container {
    max-width: 1200px;
    margin: 0 auto;
}

.divorce-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.divorce-intro h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.divorce-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.divorce-requirements {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.divorce-requirements h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.divorce-requirements ul {
    list-style-type: none;
    padding: 0;
}

.divorce-requirements ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.divorce-requirements ul li:before {
    content: "•";
    color: #c0392b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.divorce-requirements ul ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    display: flex;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.step-number {
    background-color: #c0392b;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.issue-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.issue-card i {
    font-size: 2.5rem;
    color: #c0392b;
    margin-bottom: 1rem;
}

.issue-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.issue-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.how-we-help {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 4rem;
}

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

.help-text ul {
    list-style-type: none;
    padding: 0;
}

.help-text ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.help-text ul li:before {
    content: "✓";
    color: #c0392b;
    position: absolute;
    left: 0;
}

.consultation-cta {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.consultation-cta h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.consultation-cta p {
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for divorce page */
@media (max-width: 1024px) {
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-content {
        grid-template-columns: 1fr;
    }
    
    .divorce-requirements {
        padding: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    .divorce-intro h2 {
        font-size: 1.8rem;
    }

    .footer-info h3 {
        justify-content: center;
    }

    .footer-info p {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-info p i {
        margin: 0;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 4rem 1rem;
    background-color: #fff;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-section.disclaimer {
    background-color: #f8f9fa;
    border-left: 4px solid #c0392b;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 5px 5px 0;
}

.privacy-section.disclaimer p {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.privacy-section.disclaimer i {
    color: #c0392b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    font-family: 'Playfair Display', serif;
}

.privacy-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.privacy-section ul li:before {
    content: "•";
    color: #c0392b;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.privacy-section a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #c0392b;
}

.privacy-section i {
    color: #c0392b;
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .privacy-section h2 {
        font-size: 1.8rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-section p,
    .privacy-section ul li {
        font-size: 0.95rem;
    }
}

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

.requirements-text {
    padding-right: 1rem;
}

.requirements-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .requirements-content {
        grid-template-columns: 1fr;
    }
    
    .requirements-text {
        padding-right: 0;
    }
    
    .requirements-image {
        margin-top: 2rem;
    }
} 