/* =================================================================
   SIGNATURE ELEMENTS - PROFESSIONAL NOTARY WEBSITE
   Complete Production Stylesheet
   ================================================================= */

/* ===================================
   COLOR VARIABLES - NEW PROFESSIONAL THEME
   =================================== */
:root {
    /* Primary Colors */
    --primary-brown: #7A6B60;
    --primary-brown-dark: #5D4E3F;
    
    /* Gray Scale */
    --dark-charcoal: #3C3C3C;
    --medium-charcoal: #4A4A4A;
    --light-gray: #E5E5E5;
    
    /* Backgrounds */
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    
    /* Text Colors */
    --dark-text: #3C3C3C;
    --medium-text: #4A4A4A;
    --light-text: #6A6A6A;
    
    /* Effects */
    --shadow-color: rgba(122, 107, 96, 0.15);
    --shadow-hover: rgba(122, 107, 96, 0.3);
    --overlay-dark: rgba(60, 60, 60, 0.7);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

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

/* ===================================
   TYPOGRAPHY
   =================================== */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

/* Cursive Hero Title - Great Vibes */
.hero-cursive {
    font-family: 'MonteCarlo', cursive;
    font-weight: 400;
    font-size: 4.5rem;
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

/* Responsive sizing */
@media (max-width: 768px) {
    .hero-cursive {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-cursive {
        font-size: 2.2rem;
    }
}

/* ITALIC ACCENT STYLING FOR HEADINGS */
h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--primary-brown);
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-text);
}

a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-brown-dark);
}

/* ===================================
   TOP INFO BAR
   =================================== */
.top-info-bar {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-item {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--primary-brown);
}

.top-bar-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.top-bar-text {
    color: var(--white);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
#main-header {
    background-color: var(--white);
    border-bottom: 2px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: box-shadow 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-area {
    flex: 0 0 auto;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.85rem;
    color: var(--medium-text);
}

.header-logo {
    height: 70px;  /* Adjust to your logo height */
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

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

/* Responsive - smaller on mobile */
@media (max-width: 768px) {
    .header-logo {
        height: 40px;
    }
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-brown);
}

.main-nav .nav-cta {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.main-nav .nav-cta:hover {
    background-color: var(--primary-brown-dark);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-brown);
    transition: all 0.3s ease;
}

/* Make logo clickable */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

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

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-brown);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-brown-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--medium-charcoal);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--dark-charcoal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 6rem 0;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(60, 60, 60, 0.4), rgba(60, 60, 60, 0.5));  /* Dark at bottom, lighter at top */
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-section h1,
.hero-section h2 {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h1 em,
.hero-section h2 em {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-hero {
    background: linear-gradient(135deg, var(--medium-charcoal) 0%, var(--dark-charcoal) 100%);
    background-image: url('images/contact-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 5rem 0;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    color: var(--white);
}

.contact-hero h1 em {
    color: var(--white);
}

.contact-hero .hero-subtitle {
    color: var(--white);
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: 4rem 0;
}

.about-section,
.services-section,
.why-section {
    background-color: var(--white);
}

.meet-section,
.pricing-section,
.service-area-section {
    background-color: var(--off-white);
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--medium-text);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
/* About Section */
.about-content-split {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
	max-height: 400px;
	object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(122, 107, 96, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(122, 107, 96, 0.35);
}

/* Responsive */
@media (max-width: 968px) {
    .about-content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-image {
        order: -1; /* Image on top for mobile */
        max-width: 500px;
        margin: 0 auto;
    }
}


/* ===================================
   MEET YOUR NOTARY SECTION
   =================================== */
.meet-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.photo-placeholder {
    flex: 0 0 auto;
    max-width: 350px; /*prevents overflow */
}

.photo-placeholder img {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(122, 107, 96, 0.25);
}

.meet-text {
    flex: 1;
    max-width: 600px;
}

.meet-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px var(--shadow-hover);
    background-color: var(--off-white);
    border-color: var(--primary-brown);
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

.service-item:hover h3 {
    color: var(--primary-brown);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-note {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
}

.compliance-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    max-width: 700px;
    margin: 2rem auto 0;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-brown);
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.pricing-item h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: var(--medium-text);
    max-width: 700px;
    margin: 2rem auto 0;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.why-item {
    background-color: var(--off-white);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.why-icon {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.95rem;
}

/* ===================================
   STATISTICS COUNTER SECTION
   =================================== */
.statistics-section {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-charcoal) 100%);
    position: relative;
    color: var(--white);
    padding: 5rem 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 60, 60, 0.85);
    z-index: 1;
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.stats-title {
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
}

.stats-title em {
    color: var(--white);
}

.stats-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.stat-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* ===================================
   SERVICE AREA SECTION
   =================================== */
.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.area-tag {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background-color: var(--primary-brown-dark);
    transform: scale(1.05);
}

.area-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--medium-text);
    margin-top: 2rem;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-info-section {
    background-color: var(--off-white);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-brown);
    font-weight: 600;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-form-section {
    background-color: var(--white);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background-color: var(--off-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px var(--shadow-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--off-white);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-brown);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
}

/* ===================================
   DISCLAIMER SECTION
   =================================== */
.disclaimer-section {
    background-color: var(--light-gray);
    text-align: center;
}

.disclaimer-section h3 {
    margin-bottom: 1rem;
}

.disclaimer-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background-color: var(--dark-charcoal);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: var(--primary-brown);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 1rem auto 0;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-brown);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* ===================================
   FLOATING CTA BUTTON
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.float-btn:hover {
    background-color: var(--primary-brown-dark);
    transform: scale(1.05);
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;  /* Above floating CTA */
    right: 20px;
    background-color: var(--primary-brown);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top:hover {
    background-color: var(--primary-brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    stroke: var(--white);
}

/* Responsive positioning */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
}

.service-cta {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-brown);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-cta {
    opacity: 1;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-item:nth-child(6) { transition-delay: 0.6s; }
.stagger-item:nth-child(7) { transition-delay: 0.7s; }
.stagger-item:nth-child(8) { transition-delay: 0.8s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-left, .top-bar-right {
        width: 100%;
        justify-content: center;
    }
    
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    /* Navigation */
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-top: 1px solid var(--light-gray);
        box-shadow: 0 5px 15px var(--shadow-color);
    }
    
    .main-nav.active ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .main-nav.active ul li {
        width: 100%;
    }
    
    .main-nav.active a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-section,
    .contact-hero {
        padding: 3rem 0;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .services-grid,
    .why-grid,
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-details {
        grid-template-columns: 1fr;
    }
    
    .meet-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Floating CTA */
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .float-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .service-areas {
        gap: 0.5rem;
    }
    
    .area-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===================================
   PRIVACY POLICY PAGE STYLES
   =================================== */
.privacy-hero {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-charcoal) 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    color: var(--white);
}

.privacy-hero h1 {
    color: var(--white);
}

.privacy-hero h1 em {
    color: var(--white);
}

.privacy-hero .hero-subtitle {
    color: var(--light-gray);
}

.privacy-content-section {
    background-color: var(--white);
    padding: 4rem 0;
}

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

.privacy-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--off-white);
    border-left: 4px solid var(--primary-brown);
    border-radius: 5px;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 3rem;
}

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

.privacy-section h2 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.privacy-section h2 em {
    color: var(--primary-brown);
}

.privacy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--medium-text);
}

.privacy-section li strong {
    color: var(--dark-text);
}

.contact-info-box {
    background-color: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
    margin-top: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: var(--primary-brown);
    font-weight: 600;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: italic;
    background-color: var(--off-white);
    padding: 1rem;
    border-radius: 5px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .floating-cta,
    #main-header,
    .top-info-bar,
    .hero-cta,
    .cta-center,
    footer {
        display: none;
    }
}
