﻿
.county {
    margin-bottom: 30px;
}

.county ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, ifr));
    gap: 8px;
    list-style: none;
    padding: 0;
}
.county a {
    text-decoration: none;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    display: block;
}

.county a:hover {
    background: #0077ff;
    color: white;
}
:root {
    --primary: #2e1065;/**dark purple*/
    --primary-light: #5b21b6;/*lighter purple*/
    --primary-deep: #1e0a4a;/*darkest purple*/

    --secondary: #0ea5e9;/*teal*/
    --accent: #14b8a6;/*lighter teal*/
    --accent-dark: #0f766e;/*dark teal*/
    --accent-glow: rgba(20, 184, 166, 0.35);

    --dark: #0f172a;
    --light:#acadac;/*grey*/

    --bg: #f9fafb;/*super light*/
    --bg-soft: #eef2f7;
    --card: #ffffff;/*super light*/

    --text: #0f172a;/*dark teal almost black*/
    --muted: #64748b;/*dark grey*/
    --border: #e2e8f0;/*off-white*/
}

* {
    margin: 0;
    font-family: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Ariel, sans-serif;
    transition: all 0.2s ease;
}

body {
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 40%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    animation: fadepage 0.5s ease;
    font-size: 16px;
    padding-bottom: 80px;
}

header {
    background: white;
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}
p {
    color: var(--muted);
    line-height: 1.6;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    transition: 0.3s;
}
.nav.scrolled {
    padding: 8px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}
nav h2 {
    color: #0077ff;
    font-weight: 700;
}
nav a {
    text-decoration: none;
    margin-left: 25px;
    color: var(--text);
    font-weight: 500;
}
nav a:hover {
    color: var(--accent);
}
.hero {
    position: relative;
    background-image: linear-gradient(
        135deg,
        var(--primary-deep),
        var(--primary),
        var(--primary-light)
    );
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::after {
    content: " ";
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    filter: blur(120px);
    top: -100px;
    right: -100px;
}
.hero * {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}
.btn,
.btn-secondary {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: 0.2s;
}
.btn:hover {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}
.btn-secondary {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--accent-glow);
}
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}
.alt {
    background: linear-gradient(to bottom,
        var(--bg),
        var(--bg-soft)
    );
    border-radius: 12px;
}
.section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.section-divider {
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    margin: 20px auto 30px;
    width: 100px;
    border-radius: 3px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.card {
    background: var(--card);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 10px 10px 10px var(--primary);
    transition: 0.3s ease;
}
.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 20px 20px 20px var(--primary-deep);
}
.card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

/**form section */
form {
    display: grid;
    gap: 10px;
}
.form-section {
    display: flex;
    justify-content:center;
    padding: 20px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to bottom, var(--primary), var(--light-primary));
    border-radius: 16px;
    box-shadow: 0 15px 40px var(--primary);
}
.contact-form div {
    margin-bottom: 18px;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: transparent;
    outline: none;
}
.form-group centered {
    text-align: center;
}
.form-group.centered textarea {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}
.form-group label {
    position: absolute;
    left: 12px;
    top: 14px;
    color: #777;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.2s ease;
    background: white;
    padding: 0 5px;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 0.75rem;
    color: #4c1d95;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--accent-glo);
}

input, textarea {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}
form {
    display: grid;
    gap: 12px;
}
button {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
button:hover {
    box-shadow: 0 8px 20px var(--accent);
    transform: scale(1.05);
}
.call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to right, var(--accent), var(--primary));
    color: white;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.reviews-section {
    padding: 60px 20px;
    padding-bottom: 80px;
    text-align: center;
}
.reviews {
    position: relative;
    max-width: 650px;
    margin: 40px auto;

}
.review {
    position: absolute;
    inset: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease;
    filter: blur(4px);
    background: var(--card);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.review.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8),
                0 0 20px rgba(20, 184, 166, 0.15);
}
.review p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 15px;
    position: relative;
}
.review p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, white);
}
.author strong {
    display: block;
    font-size: 0.95rem;
}
.author span {
    font-size: 0.8rem;
    color: var(--muted);
}
.review-cta {
    display: inline-block;
    margin-top: 20px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}
.review-cta:hover {
    text-decoration: underline;
}
.stars {
    color: #facc15;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.iframe {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
}
@media (max-width: 768px) {
    .call-btn {
        display: none;
    }
}
.secondary {
    background: white;
    color: #0f172a;
    margin-left: 10px;
}
footer {
    background: linear-gradient(90deg, #091540, #12245c);
    color: white;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}
/*left*/
.footer-link {
    background: #2fd3c6;
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.footer-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(47, 211, 198, 0.7);
}

/*center*/
.footer-center  {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.facebook-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(47,211,198,0.4));
}
/*glow hover*/
.facebook-icon img:hover {
    transform: scale(1.15);
    filter:
        drop-shadow(0 0 6px #2fd3c6)
        drop-shadow(0 0 12px #2fd3c6)
        drop-shadow(0 0 18px #2fd3c6);
}

.footer-right {
    margin-left: auto;
    text-align: right;
    line-height: 1.5;
}
.footer-right p {
    margin: 0;
}
.footer-right p:hover {
    color: #20d6c7;
    transition: 0.3s ease;
}
/*media*/
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
        padding-top: 70px;
    }
    .footer-center {
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-right {
        margin-left: 0;
        text-align: center;
    }
}
.fade-in {
    opacity: 0;
    transform : translateY(20px);
}
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}
.fade-in {
    transition: all 0.6s ease;
}
.mobile-call {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, var(--accent));
    text-align: center;
    padding: 16px;
    display: none;
    font-size: 1.3rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);

}
.mobile-call a {
    display: block;
    width: 100%;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}
@media (max-width: 768px) {
    .mobile-call {
        display: block;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero{
        padding: 60px 15px;
    }
    .section {
        padding: 40px 15px;
    }
    
}
@media (max-width: 768px) {
    .hamburger {
        display: block;
        width: 40px;
        height: 40px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }

    .nav-links a {
        padding: 10px 0;
        font-size: 1.2rem;
    }

    .nav-links.active {
        display: flex;
    }
    
}
@keyframes fadePage {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 768px) {
    .form-section {
        padding: 10px;
    }
    .contact-form {
        padding: 15px;
    }
}
.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    height: auto;
}
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
}
.social-media {
    height: 25px;
    width: 8mm;
}
.top-bar {
    background: var(--accent);
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 8px 20px;
    display: flex;
    font-weight: bold;
    font-size: 0.9rem;
    flex-wrap: wrap;

}
.top-bar span {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        font-size: 0.85rem;
    }
}
.left-group, .right-group {
    display: flex;
    align-items: center;
}
.left-group div, .right-group div {

}
.top-bar a {
    color: white;
    text-decoration: none;
}
.trust-strip {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-wrap: wrap;
    gap: 10px;
}
.bg-image-section {
    background: url('images/burst-pipe.png') center/cover no-repeat;
    padding: 80px 20px;
    color: white;
    position: relative;
}
.bg-image-section p {
    color: white;
}
.bg-image-section::before {
    content:"";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.bg-image-section * {
    position: relative;
}
.areas {
    padding-bottom:0;
}
.counties {
    padding-top: 5px;
}
.family-bio-pics {
    display:flex;
    gap:15px;
    justify-content:center;
    flex-wrap: wrap;
    margin-top:20px;
}
.family-bio-pics img{
    width:300px;
    max-width:100%;
    border-radius:16px;
    object-fit:cover;
    box-shadow:0 4px 12px rgba(0,0,0..2);
    transition:transform .3s ease;
}
.family-bio-pics img:hover {
    transform: scale(1.03);
}
@media (max-width: 768px) {
    .family-bio-pics{
        gap:10px;
    }
    .family-bio-pics img {
        width:160px;
        min-width: 140px;
    }
}
.mission-statement {
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-size: 1.5rem;
}
.terms {
    width: 100%;
    height: 800px;
}
.terms-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
    transition: 0.2s;
    width: 200px;
}
.terms-btn:hover {
    background: var(--accent-dark);
}
footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 25px;
}
ul {
    list-style: none;
}
.comparison-section {
    padding: 20px 20px;
    text-align: center;
}

.comparison-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.comparison-card {
    width: 240px;
    max-width:100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0,0,0,.12),
        0 0 20px rgba(88, 28, 135, .15);

    transition:.3s ease;
}
.comaprison-card:hover {
    transform: translateY(-8px);
}
.comparison-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.comparison-card h2 {
    padding: 18px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}
.good-card {
    border-top:6px solid #2dd4bf;
}
.bad-card {
    border-top:6px solid #7c3aed;
}
.hero-cave-junction {
    position: relative;
    background-image: url('images/cave-junction-caves.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-grants-pass{
    position: relative;
    background-image: url('images/grants-pass-rafting.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-glendale {
    position: relative;
    background-image: url('images/lumber-mill-glendale.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-merlin {
    position: relative;
    background-image: url('images/river-merlin.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-williams {
    position: relative;
    background-image: url('images/vineyard-williams.jpg');
    background-size: cover;
    color: var( --primary-light);
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-ashland {
    position: relative;
    background-image: url('images/stage-ashland.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-medford {
    position: relative;
    background-image: url('images/pear-orchard-medford.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-white-city {
    position: relative;
    background-image: url('images/white-city-farmhouse.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-van {
    position: relative;
    background-image: url('images/van.jpg');
    background-size: cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
}
.hero-grants-pass::before,
.hero-cave-junction::before,
.hero-glendale::before,
.hero-merlin::before,
.hero-williams::before,
.hero-ashland::before,
.hero-medford::before,
.hero-white-city::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(10,10,30,.72), rgba(20,20,40,.58) );
    z-index: 1;
}
.hero-grants,
.hero-text-box,
.hero-glendale,
.hero-merlin,
.hero-williams,
.hero-ashland,
.hero-medford,
.hero-white-city,
.hero-van * {
    position: relative;
    z-index: 2;
}

.hero-grants-pass h1,
.hero-cave-junction h1,
.hero-glendale h1,
.hero-merlin h1,
.hero-williams h1,
.hero-ashland h1,
.hero-medford h1,
.hero-white-city h1 {
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,.75), 0 0 20px rgba(0,0,0,.45), 0 0 40px rgba(45,212,191,.18);
}

.hero-grants-pass p,
.hero-cave-junction p,
.hero-glendale p,
.hero-merlin p,
.hero-williams p,
.hero-ashland p,
.hero-medford p,
.hero-white-city p{
    color: rgba(255,255,255,.92);
    text-shadow: 0 2px 6px rgba(0,0,0,.8);
}
@media (max-width:768px) {
    .hero-cave-junction,
    .hero-grants-pass,
    .hero-glendale,
    .hero-merlin,
    .hero-williams,
    .hero-ashland,
    .hero-medford,
    .hero-white-city,
    .hero-van{
        height:420px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
        padding: 80px 20px;
    }
}


.hero-text-box{
    background:rgba(10,10,25,.28);
    backdrop-filter:blur(6px);
    padding:40px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.08);
    z-index:2;
}
@media (max-width:768px) {
    .hero-text-box {
        padding-bottom:10px;
        padding-top:10px;
    }
}
.hero-text-box-van {
    background: rgba(10,10,25,.28);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.08);
    position:relative;
    z-index:2;
    width:100%;
    max-width:900px;
    text-align:center;
    margin: 0 auto;
    display: flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    overflow-wrap:break-word;
    word-wrap:break-word;
    
}
.hero-text-box-van p{
    
   margin:0 auto 18px auto;
    line-height:1.7;
    font-size:1.05rem;
    text-align:center;
    width:100%;
    overflow-wrap:break-word;
    word-wrap:break-word;
    hyphens:auto;
    color:var(--bg-soft);
 
}
@media (max-width:768px) {
    .hero-van-header {
        display:none;
    }
    .hero-van{
        display:none;
    }
}
.terms-container h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1e293b;
}
.terms-container h1 {
    padding-left: 20px;
    margin-bottom: 20px;
}
.terms-container li {
    margin-bottom: 10px;
    line-height:1.6;
}
.terms-container ul {
    list-style-type:disc;
}
.terms-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}
@media (max-width: 768px) {
    .terms-container {
        padding: 16px;
    }
    .terms-container h2 {
        font-size: 1.2rem;
    }
    .terms-container li,
    .terms-container p{
        font-size:0.95rem;
    }
}
.download-pdf {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 20px;
    background: #20cfcf;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
}
@media (max-width:768px) {
    ul{
        padding-left:20px;
        margin-left:0;
    }
}
.spaced {
    padding-bottom: 10px;
    padding-top: 10px;
}