/* ===================================
   NÄKE & PETERSEN LAW FIRM WEBSITE
   Premium Law Firm Theme
=================================== */

:root{

    --primary:#0F2744;
    --secondary:#B9975B;
    --light:#F7F8FA;
    --white:#ffffff;
    --dark:#1A1A1A;
    --gray:#666666;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* =====================
   HEADER
===================== */

header{

    background:var(--white);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo h2{

    color:var(--primary);
    font-family:'Playfair Display',serif;
    font-size:28px;

}

.logo span{

    color:var(--secondary);
    font-size:13px;
    letter-spacing:1px;

}

.nav-links{

    display:flex;
    gap:30px;

}

.nav-links a{

    color:var(--primary);
    font-weight:600;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--secondary);

}

/* =====================
   BUTTONS
===================== */

.btn-primary{

    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    background:#9b7f4b;
    transform:translateY(-2px);

}

.btn-secondary{

    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;
    color:var(--primary);

}

.center-btn{

    display:block;
    width:fit-content;
    margin:40px auto 0;

}

/* =====================
   HERO
===================== */

.hero{

    position:relative;
    min-height:85vh;

    background:
    url('../images/hero.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;

}

.overlay{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(15,39,68,.75);

}

.hero-content{

    position:relative;
    z-index:2;
    color:white;
    max-width:700px;

}

.hero h1{

    font-family:'Playfair Display',serif;
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* =====================
   TRUST
===================== */

.trust{

    background:var(--light);
    padding:70px 0;

}

.trust-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;

}

.trust-item h3{

    color:var(--secondary);
    font-size:42px;

}

.trust-item p{

    color:var(--gray);

}

/* =====================
   SECTIONS
===================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
    font-family:'Playfair Display',serif;

}

.section-title p{

    color:var(--gray);
    max-width:700px;
    margin:auto;

}

/* =====================
   ABOUT
===================== */

.about-content{

    max-width:850px;
    margin:auto;
    text-align:center;

}

.about-text p{

    margin-bottom:20px;
    color:var(--gray);

}

/* =====================
   CARDS
===================== */

.practice-grid,
.notary-grid,
.team-grid,
.features{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card,
.feature{

    background:white;
    border-radius:10px;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover,
.feature:hover{

    transform:translateY(-6px);

}

.card h3,
.feature h3{

    color:var(--primary);
    margin-bottom:15px;

}

.card p,
.feature p{

    color:var(--gray);

}

/* =====================
   NOTARY
===================== */

.notary-highlight{

    background:var(--light);

}

/* =====================
   TEAM
===================== */

.team-preview{

    background:white;

}

/* =====================
   TESTIMONIALS
===================== */

.testimonials{

    background:var(--primary);
    color:white;

}

.testimonials .section-title h2{

    color:white;

}

.testimonial{

    max-width:800px;
    margin:auto;
    text-align:center;

}

.testimonial p{

    font-size:24px;
    margin-bottom:20px;

}

.testimonial h4{

    color:var(--secondary);

}

/* =====================
   CTA
===================== */

.cta{

    text-align:center;
    background:var(--light);

}

.cta h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;

}

.cta p{

    margin-bottom:30px;
    color:var(--gray);

}

/* =====================
   FOOTER
===================== */

footer{

    background:#081729;
    color:white;
    padding-top:70px;

}

.footer-content{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer-content h3,
.footer-content h4{

    margin-bottom:20px;
    color:var(--secondary);

}

.footer-content ul li{

    margin-bottom:10px;

}

.footer-content a{

    color:white;

}

.footer-content a:hover{

    color:var(--secondary);

}

.copyright{

    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);

}

/* =====================
   FORM STYLES
===================== */

form{

    max-width:800px;
    margin:auto;

}

input,
select,
textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:4px;
    font-family:inherit;

}

textarea{

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;
    border-color:var(--secondary);

}

/* =====================
   TABLES
===================== */

table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;

}

table th{

    background:var(--primary);
    color:white;

}

table th,
table td{

    padding:15px;
    border:1px solid #ddd;
    text-align:left;

}

/* =====================
   PAGE HERO
===================== */

.page-hero{

    background:var(--primary);
    color:white;
    text-align:center;
    padding:120px 0;

}

.page-hero h1{

    font-size:60px;
    font-family:'Playfair Display',serif;

}

/* =====================
   CONTACT BOXES
===================== */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.contact-box{

    padding:35px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:10px;

}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr 1fr;

    }

    .hero h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .nav-container{

        flex-direction:column;
        gap:20px;

    }

    .nav-links{

        flex-wrap:wrap;
        justify-content:center;

    }

    .hero{

        min-height:70vh;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:18px;

    }

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .page-hero h1{

        font-size:42px;

    }

    section{

        padding:70px 0;

    }

}
/* ===================================
   NÄKE & PETERSEN LAW FIRM WEBSITE
   Premium Law Firm Theme
=================================== */

:root{

    --primary:#0F2744;
    --secondary:#B9975B;
    --light:#F7F8FA;
    --white:#ffffff;
    --dark:#1A1A1A;
    --gray:#666666;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* =====================
   HEADER
===================== */

header{

    background:var(--white);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo h2{

    color:var(--primary);
    font-family:'Playfair Display',serif;
    font-size:28px;

}

.logo span{

    color:var(--secondary);
    font-size:13px;
    letter-spacing:1px;

}

.nav-links{

    display:flex;
    gap:30px;

}

.nav-links a{

    color:var(--primary);
    font-weight:600;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--secondary);

}

/* =====================
   BUTTONS
===================== */

.btn-primary{

    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    background:#9b7f4b;
    transform:translateY(-2px);

}

.btn-secondary{

    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;
    color:var(--primary);

}

.center-btn{

    display:block;
    width:fit-content;
    margin:40px auto 0;

}

/* =====================
   HERO
===================== */

.hero{

    position:relative;
    min-height:85vh;

    background:
    url('../images/hero.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;

}

.overlay{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(15,39,68,.75);

}

.hero-content{

    position:relative;
    z-index:2;
    color:white;
    max-width:700px;

}

.hero h1{

    font-family:'Playfair Display',serif;
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* =====================
   TRUST
===================== */

.trust{

    background:var(--light);
    padding:70px 0;

}

.trust-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;

}

.trust-item h3{

    color:var(--secondary);
    font-size:42px;

}

.trust-item p{

    color:var(--gray);

}

/* =====================
   SECTIONS
===================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
    font-family:'Playfair Display',serif;

}

.section-title p{

    color:var(--gray);
    max-width:700px;
    margin:auto;

}

/* =====================
   ABOUT
===================== */

.about-content{

    max-width:850px;
    margin:auto;
    text-align:center;

}

.about-text p{

    margin-bottom:20px;
    color:var(--gray);

}

/* =====================
   CARDS
===================== */

.practice-grid,
.notary-grid,
.team-grid,
.features{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card,
.feature{

    background:white;
    border-radius:10px;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover,
.feature:hover{

    transform:translateY(-6px);

}

.card h3,
.feature h3{

    color:var(--primary);
    margin-bottom:15px;

}

.card p,
.feature p{

    color:var(--gray);

}

/* =====================
   NOTARY
===================== */

.notary-highlight{

    background:var(--light);

}

/* =====================
   TEAM
===================== */

.team-preview{

    background:white;

}

/* =====================
   TESTIMONIALS
===================== */

.testimonials{

    background:var(--primary);
    color:white;

}

.testimonials .section-title h2{

    color:white;

}

.testimonial{

    max-width:800px;
    margin:auto;
    text-align:center;

}

.testimonial p{

    font-size:24px;
    margin-bottom:20px;

}

.testimonial h4{

    color:var(--secondary);

}

/* =====================
   CTA
===================== */

.cta{

    text-align:center;
    background:var(--light);

}

.cta h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;

}

.cta p{

    margin-bottom:30px;
    color:var(--gray);

}

/* =====================
   FOOTER
===================== */

footer{

    background:#081729;
    color:white;
    padding-top:70px;

}

.footer-content{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer-content h3,
.footer-content h4{

    margin-bottom:20px;
    color:var(--secondary);

}

.footer-content ul li{

    margin-bottom:10px;

}

.footer-content a{

    color:white;

}

.footer-content a:hover{

    color:var(--secondary);

}

.copyright{

    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);

}

/* =====================
   FORM STYLES
===================== */

form{

    max-width:800px;
    margin:auto;

}

input,
select,
textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:4px;
    font-family:inherit;

}

textarea{

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;
    border-color:var(--secondary);

}

/* =====================
   TABLES
===================== */

table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;

}

table th{

    background:var(--primary);
    color:white;

}

table th,
table td{

    padding:15px;
    border:1px solid #ddd;
    text-align:left;

}

/* =====================
   PAGE HERO
===================== */

.page-hero{

    background:var(--primary);
    color:white;
    text-align:center;
    padding:120px 0;

}

.page-hero h1{

    font-size:60px;
    font-family:'Playfair Display',serif;

}

/* =====================
   CONTACT BOXES
===================== */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.contact-box{

    padding:35px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:10px;

}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr 1fr;

    }

    .hero h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .nav-container{

        flex-direction:column;
        gap:20px;

    }

    .nav-links{

        flex-wrap:wrap;
        justify-content:center;

    }

    .hero{

        min-height:70vh;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:18px;

    }

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .page-hero h1{

        font-size:42px;

    }

    section{

        padding:70px 0;

    }

}
/* ===================================
   NÄKE & PETERSEN LAW FIRM WEBSITE
   Premium Law Firm Theme
=================================== */

:root{

    --primary:#0F2744;
    --secondary:#B9975B;
    --light:#F7F8FA;
    --white:#ffffff;
    --dark:#1A1A1A;
    --gray:#666666;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* =====================
   HEADER
===================== */

header{

    background:var(--white);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo h2{

    color:var(--primary);
    font-family:'Playfair Display',serif;
    font-size:28px;

}

.logo span{

    color:var(--secondary);
    font-size:13px;
    letter-spacing:1px;

}

.nav-links{

    display:flex;
    gap:30px;

}

.nav-links a{

    color:var(--primary);
    font-weight:600;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--secondary);

}

/* =====================
   BUTTONS
===================== */

.btn-primary{

    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    background:#9b7f4b;
    transform:translateY(-2px);

}

.btn-secondary{

    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;
    color:var(--primary);

}

.center-btn{

    display:block;
    width:fit-content;
    margin:40px auto 0;

}

/* =====================
   HERO
===================== */

.hero{

    position:relative;
    min-height:85vh;

    background:
    url('../images/hero.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;

}

.overlay{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(15,39,68,.75);

}

.hero-content{

    position:relative;
    z-index:2;
    color:white;
    max-width:700px;

}

.hero h1{

    font-family:'Playfair Display',serif;
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* =====================
   TRUST
===================== */

.trust{

    background:var(--light);
    padding:70px 0;

}

.trust-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;

}

.trust-item h3{

    color:var(--secondary);
    font-size:42px;

}

.trust-item p{

    color:var(--gray);

}

/* =====================
   SECTIONS
===================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
    font-family:'Playfair Display',serif;

}

.section-title p{

    color:var(--gray);
    max-width:700px;
    margin:auto;

}

/* =====================
   ABOUT
===================== */

.about-content{

    max-width:850px;
    margin:auto;
    text-align:center;

}

.about-text p{

    margin-bottom:20px;
    color:var(--gray);

}

/* =====================
   CARDS
===================== */

.practice-grid,
.notary-grid,
.team-grid,
.features{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card,
.feature{

    background:white;
    border-radius:10px;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover,
.feature:hover{

    transform:translateY(-6px);

}

.card h3,
.feature h3{

    color:var(--primary);
    margin-bottom:15px;

}

.card p,
.feature p{

    color:var(--gray);

}

/* =====================
   NOTARY
===================== */

.notary-highlight{

    background:var(--light);

}

/* =====================
   TEAM
===================== */

.team-preview{

    background:white;

}

/* =====================
   TESTIMONIALS
===================== */

.testimonials{

    background:var(--primary);
    color:white;

}

.testimonials .section-title h2{

    color:white;

}

.testimonial{

    max-width:800px;
    margin:auto;
    text-align:center;

}

.testimonial p{

    font-size:24px;
    margin-bottom:20px;

}

.testimonial h4{

    color:var(--secondary);

}

/* =====================
   CTA
===================== */

.cta{

    text-align:center;
    background:var(--light);

}

.cta h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;

}

.cta p{

    margin-bottom:30px;
    color:var(--gray);

}

/* =====================
   FOOTER
===================== */

footer{

    background:#081729;
    color:white;
    padding-top:70px;

}

.footer-content{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer-content h3,
.footer-content h4{

    margin-bottom:20px;
    color:var(--secondary);

}

.footer-content ul li{

    margin-bottom:10px;

}

.footer-content a{

    color:white;

}

.footer-content a:hover{

    color:var(--secondary);

}

.copyright{

    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);

}

/* =====================
   FORM STYLES
===================== */

form{

    max-width:800px;
    margin:auto;

}

input,
select,
textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:4px;
    font-family:inherit;

}

textarea{

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;
    border-color:var(--secondary);

}

/* =====================
   TABLES
===================== */

table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;

}

table th{

    background:var(--primary);
    color:white;

}

table th,
table td{

    padding:15px;
    border:1px solid #ddd;
    text-align:left;

}

/* =====================
   PAGE HERO
===================== */

.page-hero{

    background:var(--primary);
    color:white;
    text-align:center;
    padding:120px 0;

}

.page-hero h1{

    font-size:60px;
    font-family:'Playfair Display',serif;

}

/* =====================
   CONTACT BOXES
===================== */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.contact-box{

    padding:35px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:10px;

}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr 1fr;

    }

    .hero h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .nav-container{

        flex-direction:column;
        gap:20px;

    }

    .nav-links{

        flex-wrap:wrap;
        justify-content:center;

    }

    .hero{

        min-height:70vh;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:18px;

    }

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .page-hero h1{

        font-size:42px;

    }

    section{

        padding:70px 0;

    }

}
/* ===================================
   NÄKE & PETERSEN LAW FIRM WEBSITE
   Premium Law Firm Theme
=================================== */

:root{

    --primary:#0F2744;
    --secondary:#B9975B;
    --light:#F7F8FA;
    --white:#ffffff;
    --dark:#1A1A1A;
    --gray:#666666;

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* =====================
   HEADER
===================== */

header{

    background:var(--white);
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.05);

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

}

.logo h2{

    color:var(--primary);
    font-family:'Playfair Display',serif;
    font-size:28px;

}

.logo span{

    color:var(--secondary);
    font-size:13px;
    letter-spacing:1px;

}

.nav-links{

    display:flex;
    gap:30px;

}

.nav-links a{

    color:var(--primary);
    font-weight:600;
    transition:.3s;

}

.nav-links a:hover{

    color:var(--secondary);

}

/* =====================
   BUTTONS
===================== */

.btn-primary{

    display:inline-block;
    background:var(--secondary);
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    background:#9b7f4b;
    transform:translateY(-2px);

}

.btn-secondary{

    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:14px 28px;
    border-radius:4px;
    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;
    color:var(--primary);

}

.center-btn{

    display:block;
    width:fit-content;
    margin:40px auto 0;

}

/* =====================
   HERO
===================== */

.hero{

    position:relative;
    min-height:85vh;

    background:
    url('../images/hero.jpg')
    center center/cover no-repeat;

    display:flex;
    align-items:center;

}

.overlay{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(15,39,68,.75);

}

.hero-content{

    position:relative;
    z-index:2;
    color:white;
    max-width:700px;

}

.hero h1{

    font-family:'Playfair Display',serif;
    font-size:65px;
    line-height:1.1;
    margin-bottom:25px;

}

.hero p{

    font-size:20px;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;

}

/* =====================
   TRUST
===================== */

.trust{

    background:var(--light);
    padding:70px 0;

}

.trust-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;

}

.trust-item h3{

    color:var(--secondary);
    font-size:42px;

}

.trust-item p{

    color:var(--gray);

}

/* =====================
   SECTIONS
===================== */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
    font-family:'Playfair Display',serif;

}

.section-title p{

    color:var(--gray);
    max-width:700px;
    margin:auto;

}

/* =====================
   ABOUT
===================== */

.about-content{

    max-width:850px;
    margin:auto;
    text-align:center;

}

.about-text p{

    margin-bottom:20px;
    color:var(--gray);

}

/* =====================
   CARDS
===================== */

.practice-grid,
.notary-grid,
.team-grid,
.features{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.card,
.feature{

    background:white;
    border-radius:10px;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover,
.feature:hover{

    transform:translateY(-6px);

}

.card h3,
.feature h3{

    color:var(--primary);
    margin-bottom:15px;

}

.card p,
.feature p{

    color:var(--gray);

}

/* =====================
   NOTARY
===================== */

.notary-highlight{

    background:var(--light);

}

/* =====================
   TEAM
===================== */

.team-preview{

    background:white;

}

/* =====================
   TESTIMONIALS
===================== */

.testimonials{

    background:var(--primary);
    color:white;

}

.testimonials .section-title h2{

    color:white;

}

.testimonial{

    max-width:800px;
    margin:auto;
    text-align:center;

}

.testimonial p{

    font-size:24px;
    margin-bottom:20px;

}

.testimonial h4{

    color:var(--secondary);

}

/* =====================
   CTA
===================== */

.cta{

    text-align:center;
    background:var(--light);

}

.cta h2{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;

}

.cta p{

    margin-bottom:30px;
    color:var(--gray);

}

/* =====================
   FOOTER
===================== */

footer{

    background:#081729;
    color:white;
    padding-top:70px;

}

.footer-content{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer-content h3,
.footer-content h4{

    margin-bottom:20px;
    color:var(--secondary);

}

.footer-content ul li{

    margin-bottom:10px;

}

.footer-content a{

    color:white;

}

.footer-content a:hover{

    color:var(--secondary);

}

.copyright{

    text-align:center;
    padding:25px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);

}

/* =====================
   FORM STYLES
===================== */

form{

    max-width:800px;
    margin:auto;

}

input,
select,
textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:4px;
    font-family:inherit;

}

textarea{

    min-height:180px;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;
    border-color:var(--secondary);

}

/* =====================
   TABLES
===================== */

table{

    width:100%;
    border-collapse:collapse;
    margin-top:20px;

}

table th{

    background:var(--primary);
    color:white;

}

table th,
table td{

    padding:15px;
    border:1px solid #ddd;
    text-align:left;

}

/* =====================
   PAGE HERO
===================== */

.page-hero{

    background:var(--primary);
    color:white;
    text-align:center;
    padding:120px 0;

}

.page-hero h1{

    font-size:60px;
    font-family:'Playfair Display',serif;

}

/* =====================
   CONTACT BOXES
===================== */

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.contact-box{

    padding:35px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-radius:10px;

}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:992px){

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr 1fr;

    }

    .hero h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .nav-container{

        flex-direction:column;
        gap:20px;

    }

    .nav-links{

        flex-wrap:wrap;
        justify-content:center;

    }

    .hero{

        min-height:70vh;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:18px;

    }

    .practice-grid,
    .notary-grid,
    .team-grid,
    .features,
    .trust-grid,
    .footer-content,
    .contact-grid{

        grid-template-columns:1fr;

    }

    .page-hero h1{

        font-size:42px;

    }

    section{

        padding:70px 0;

    }

}