/* Shawn's Gold Standard - Main Stylesheet */

:root {
    --navy-bg: #0d1b2a; /* Deeper Navy */
    --gold-accent: #c79d3f; /* A more refined gold */
    --off-white: #f8f7f4; /* Warm off-white */
    --light-gray: #e0e1dd; /* Light gray for borders/accents */
    --dark-text: #1b263b; /* Dark blue/gray for text on light backgrounds */
    --light-text: #f8f7f4; /* Off-white text on dark backgrounds */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--off-white);
    color: var(--dark-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy-bg);
    font-weight: 700;
}

a {
    color: var(--gold-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background-color: var(--navy-bg);
    padding: 0.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: padding 0.3s ease-in-out;
}

header.scrolled {
    padding: 0.25rem 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
    transition: height 0.3s ease-in-out;
}

header.scrolled .logo img {
    height: 45px;
}

.logo .tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--light-gray);
    margin: 0;
    padding: 0;
    border-left: 1px solid var(--gold-accent);
    padding-left: 1rem;
    font-weight: 400;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--light-text);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-accent);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.hero {
    position: relative;
    padding: 0;
    background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.8)), url('https://res.cloudinary.com/dcuwsbzv5/image/upload/v1754049427/gold-coins-background_v55bcs.jpg') no-repeat center center/cover;
    color: var(--light-text);
    min-height: 85vh;
    border-bottom: 5px solid var(--gold-accent);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 2rem;
    animation: fadeIn 1s ease-in-out;
    height: 85vh;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    animation: floatAnimation 6s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* Responsive font size */
    color: var(--light-text);
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-weight: 400;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--gold-accent);
    border-radius: 50%;
    color: var(--navy-bg);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Reusable Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--gold-accent);
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--light-bg);
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.title-underline {
    height: 3px;
    width: 80px;
    background: var(--gold-accent);
    margin: 1rem auto 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
    margin: 4rem 0;
    position: relative;
}

.step-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--gold-accent);
    color: var(--navy-bg);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.step-icon {
    background-color: var(--navy-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 1rem auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    background-color: var(--navy-bg);
    transform: scale(1.1);
}

.step-icon img {
    width: 40px;
    height: auto;
}

.step-item h3 {
    color: var(--navy-bg);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-item p {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.step-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.step-link:hover {
    color: var(--navy-bg);
}

.arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.step-link:hover .arrow {
    transform: translateX(5px);
}

.step-connector {
    flex: 0 0 5%;
    position: relative;
    z-index: 1;
    align-self: center;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, rgba(199, 157, 63, 0.3), rgba(199, 157, 63, 1), rgba(199, 157, 63, 0.3));
    transform: translateY(-50%);
}

.process-summary {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 2rem;
}

.summary-stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to bottom, var(--navy-bg), var(--navy-light));
    border-radius: 10px;
    min-width: 180px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.summary-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

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

/* General Button Styles */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: var(--gold-accent);
    color: var(--navy-bg);
    border: 2px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: transparent;
    color: var(--gold-accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(199, 157, 63, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
    transition: all 0.3s ease;
}

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--light-text);
    color: var(--navy-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy-bg);
    border-color: var(--navy-bg);
}

.btn-secondary:hover {
    background-color: var(--navy-bg);
    color: var(--light-text);
}

/* Photo Previews */
.photo-previews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.preview-image-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.remove-image-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--navy-bg), var(--navy-dark));
    color: var(--light-text);
}

.section-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--gold-accent-rgb), 0.3);
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
}

.feature-bg-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(199, 157, 63, 0.3), transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

.feature-icon-img {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 15px;
    z-index: 1;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--gold-accent);
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.feature-item p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.feature-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--light-text);
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 6rem 0;
    background: linear-gradient(to right, #f5f5f5, #fff, #f5f5f5);
    position: relative;
    overflow: hidden;
}

.testimonial-section .section-header {
    position: relative;
    z-index: 2;
}

.testimonial-section .section-title {
    color: var(--navy-bg);
    margin-bottom: 0.5rem;
}

.testimonial-slider {
    position: relative;
    margin: 4rem auto;
    max-width: 1000px;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--navy-bg), var(--gold-accent));
}

.quote-icon {
    margin-bottom: 1.5rem;
}

.quote-img {
    width: 40px;
    height: auto;
    opacity: 0.2;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-content blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.7;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
    gap: 1rem;
}

.testimonial-avatar-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--navy-bg);
    font-size: 1.1rem;
    line-height: 1.2;
}

.testimonial-author p {
    margin: 0.2rem 0 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--gold-accent);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-weight: 600;
    color: var(--gold-accent);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--gold-accent);
    transform: scale(1.3);
}

.testimonial-summary {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 4rem 0;
}

.summary-stat {
    text-align: center;
    min-width: 150px;
    position: relative;
}

.summary-stat::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -1.5rem;
    height: 80%;
    width: 1px;
    background-color: #ddd;
}

.summary-stat:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-bg);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.testimonial-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    font-size: 1.5rem;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(rgba(13, 27, 42, 0.9), rgba(13, 27, 42, 0.95)), url('https://res.cloudinary.com/dcuwsbzv5/image/upload/v1754049427/gold-coins-background_v55bcs.jpg') no-repeat center center/cover;
    color: var(--light-text);
    overflow: hidden;
    border-top: 5px solid var(--gold-accent);
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(199, 157, 63, 0.1) 0%, rgba(13, 27, 42, 0) 70%);
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-section .section-header.light .section-title,
.final-cta-section .section-header.light .section-subtitle {
    color: var(--light-text);
}

.final-cta-section .title-underline {
    background: var(--gold-accent);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem auto;
    color: var(--light-gray);
    max-width: 80%;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2.5rem 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-feature .feature-icon {
    color: var(--gold-accent);
    font-size: 1.2rem;
    background: rgba(199, 157, 63, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature .feature-text {
    font-weight: 500;
    color: var(--light-text);
}

.cta-buttons {
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    width: 100%;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: auto;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-icon {
    filter: grayscale(0%);
}

.trust-badge span {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 500;
}
.slider-btn {
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: var(--gold-accent);
    color: var(--navy-bg);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

/* Final CTA Section */
.final-cta {
    background: var(--navy-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta h2 {
    color: var(--gold-accent);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.final-cta .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background-color: var(--gold-accent);
    color: var(--dark-text);
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: none;
}

.final-cta .cta-button:hover {
    background-color: #fff;
    color: var(--navy-bg);
    transform: scale(1.05);
}

/* Form & Button Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: bold;
    color: var(--gold-accent);
}

form input,
form textarea,
form select {
    padding: 0.8rem;
    border: 1px solid #ccc;
    background-color: #fff; /* White background for readability */
    color: #000; /* Black text for readability */
    border-radius: 5px;
    font-size: 1rem;
}

form input::placeholder, 
form textarea::placeholder {
    color: #6c757d; /* Accessible placeholder text color */
}

form button, .cta-button {
    padding: 1rem;
    background-color: var(--gold-accent);
    color: var(--navy-bg);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

form button:hover, .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Scroll Animation Classes */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

footer {
    text-align: center;
    padding: 2rem 5%;
    margin-top: 2rem;
    border-top: 1px solid var(--gold-accent);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links a {
    margin: 0 1rem;
}

/* Page-specific Styles */
.page-main {
    padding: 2rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.page-main h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-choose-us-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--navy-light), var(--navy-bg));
    border-top: 1px solid var(--gold-accent);
    border-bottom: 1px solid var(--gold-accent);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold-accent); /* Changed to gold for high contrast */
}

.why-choose-us .feature-icon {
    transition: transform 0.3s ease-in-out;
}

.why-choose-us .feature-item:hover .feature-icon {
    transform: translateY(-10px) scale(1.1);
}

/* Quote Form */
.upload-container {
    margin: 15px 0;
}

.file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-button-container {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background-color: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: var(--gold-accent);
    transform: translateY(-2px);
}

.file-count {
    font-size: 0.9rem;
    color: var(--dark-text);
    font-weight: 600;
}

.photo-upload-btn {
    display: inline-block;
    width: auto;
    padding: 0.75rem 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.photo-help-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.photo-previews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.image-preview-item {
    position: relative;
    width: 150px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.image-preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.thumbnail-container {
    position: relative;
    height: 120px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.image-preview-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 3px;
}

.filename {
    margin: 5px 0 0;
    font-size: 0.8rem;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.image-preview p {
    font-size: 0.8rem;
    margin: 5px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #000000; /* Ensuring text is black */
}

.trust-text {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, 
.form-group textarea, 
.form-group select {
width: 100%;
padding: 0.8rem;
border-radius: 4px;
border: 1px solid #ccc;
background-color: #f9f9f9;
color: var(--dark-text);
font-family: var(--font-family);
}

/* Process Section */
.process-section {
padding: 6rem 0;
background-color: #fff;
position: relative;
}

.process-section .section-description {
max-width: 800px;
margin: 0 auto 3rem;
text-align: center;
color: var(--dark-text);
}

.process-steps {
display: grid;
grid-template-columns: 1fr auto 1fr auto 1fr;
max-width: 1200px;
margin: 4rem auto;
gap: 0;
position: relative;
}

@media (max-width: 992px) {
.process-steps {
grid-template-columns: 1fr;
gap: 3rem;
}
    
.step-connector {
display: none;
}
}

.step-item {
position: relative;
z-index: 2;
background: #fff;
border-radius: 15px;
box-shadow: var(--shadow-md);
transition: all 0.3s ease;
padding: 0;
overflow: hidden;
}

.step-item:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}

.step-number {
position: absolute;
top: 15px;
left: 15px;
background: linear-gradient(135deg, var(--navy-bg), var(--navy-dark));
color: #fff;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1rem;
z-index: 2;
}

.step-content {
padding: 2.5rem;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
height: 100%;
}

.step-icon {
margin-bottom: 1.5rem;
width: 80px;
height: 80px;
background: rgba(13, 27, 42, 0.03);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
transition: all 0.3s ease;
}

.step-item:hover .step-icon {
background: rgba(199, 157, 63, 0.1);
}

.step-icon-img {
width: 100%;
height: auto;
}

.step-content h3 {
margin: 0 0 1rem;
color: var(--navy-bg);
font-size: 1.4rem;
}

.step-content p {
color: var(--dark-text);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.step-link {
color: var(--gold-accent);
font-weight: 600;
text-decoration: none;
margin-top: auto;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: all 0.3s ease;
font-size: 0.9rem;
border-bottom: 1px solid transparent;
}

.step-link:hover {
color: var(--gold-dark);
border-bottom: 1px solid var(--gold-dark);
}

.step-link .arrow {
transition: transform 0.3s ease;
}

.step-link:hover .arrow {
transform: translateX(5px);
}

.step-connector {
position: relative;
width: 50px;
height: auto;
display: flex;
align-items: center;
justify-content: center;
}

.step-connector::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
background: linear-gradient(90deg, rgba(199, 157, 63, 0.3), rgba(199, 157, 63, 0.8), rgba(199, 157, 63, 0.3));
top: 50%;
left: 0;
transform: translateY(-50%);
}

.process-summary {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 3rem;
margin: 4rem 0 2rem;
}

.summary-stat {
text-align: center;
min-width: 150px;
position: relative;
}

.summary-stat::after {
content: '';
position: absolute;
top: 10%;
right: -1.5rem;
height: 80%;
width: 1px;
background-color: #ddd;
}

.summary-stat:last-child::after {
display: none;
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--navy-bg);
margin-bottom: 0.5rem;
font-family: var(--font-heading);
}

.stat-label {
color: #666;
font-size: 1rem;
font-weight: 500;
}

/* How It Works Page */
.how-it-works-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
margin-top: 3rem;
text-align: center;
}

.step-item {
background-color: var(--navy-light);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.step-icon {
background-color: var(--gold-accent);
color: var(--navy-bg);
width: 60px;
height: 60px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}

.step-icon svg {
width: 32px;
height: 32px;
}

.step-item h3 {
color: var(--gold-accent);
margin-bottom: 1rem;
}

.step-item p {
line-height: 1.7;
color: #c5c6c7;
}

/* Contact Page */

.map-section {
width: 100%;
margin-bottom: 2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    height: 0;
    border-radius: 8px;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.contact-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap-reverse; /* Form on right on desktop, stacks on top on mobile */
}

.contact-form-section {
    flex: 2;
    min-width: 300px;
}

.contact-details-section {
    flex: 1;
    min-width: 300px;
    background-color: var(--navy-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-details-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details-section a {
    font-weight: bold;
}

.business-hours p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-details-section h3 {
    color: var(--gold-accent);
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 0.5rem;
    margin-top: 0;
}


/* About Page */
.about-section .about-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.about-portrait {
    max-width: 250px;
    border-radius: 8px;
    border: 3px solid var(--gold-accent);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-text h2 {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-quote {
    background-color: var(--navy-light);
    border-left: 5px solid var(--gold-accent);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.about-quote blockquote {
    margin: 0;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #e0e0e0;
}

.about-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: bold;
    color: var(--gold-accent);
}


/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

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

.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--gold-accent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold-accent);
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.star-rating {
    margin-bottom: 1rem;
}

.star-rating img {
    width: 20px;
    height: 20px;
}

.testimonial-card blockquote {
    margin: 0;
}

.testimonial-card blockquote p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

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


/* Final CTA Section */
.final-cta-section {
    background: var(--navy-bg);
    padding: 5rem 0;
    text-align: center;
    color: var(--light-text);
}

.final-cta-section .section-title {
    color: var(--light-text);
}

.final-cta-section .cta-tagline {
    max-width: 700px;
    margin: 1.5rem auto 2.5rem auto;
    font-size: 1.1rem;
    color: var(--light-gray);
    line-height: 1.8;
}


/* Quote Page */
.quote-page-section {
    padding: 5rem 0;
    background-color: var(--off-white);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-info-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-family: var(--font-headings);
}

.quote-info-panel > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-us-list img {
    width: 40px;
    height: 40px;
    margin-top: 5px;
}

.why-us-list h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.2rem;
    font-family: var(--font-headings);
}

.why-us-list p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.trust-seals {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray-border);
}

.trust-seals p {
    margin-bottom: 1rem;
}

.trust-seals span {
    display: inline-block;
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
}

.quote-form-panel {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.quote-form-panel h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-headings);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--light-gray-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.upload-area {
    border: 2px dashed var(--light-gray-border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    background-color: #fafafa;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.upload-area:hover, .upload-area.dragover {
    border-color: var(--gold-accent);
    background-color: #f5f2e9;
}

.file-input-hidden {
    display: none;
}

.file-input-label {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-input-label img {
    width: 40px;
    margin-bottom: 0.5rem;
}

.file-input-label span {
    font-size: 1rem;
    color: #333;
}

.file-format-info {
    font-size: 0.8rem !important;
    color: #777;
}

.btn-block {
    width: 100%;
    text-align: center;
}


/* How It Works Page */
.page-hero {
    background-color: var(--dark-blue);
    color: var(--light-text);
    text-align: center;
    padding: 4rem 0;
}

.page-title {
    font-size: 3rem;
    font-family: var(--font-headings);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-gray);
}

.how-it-works-detailed-steps {
    padding: 6rem 0;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.step-row-reverse .step-content {
    order: 2;
}

.step-row-reverse .step-visual {
    order: 1;
}

.step-content .step-number {
    display: inline-block;
    background-color: var(--gold-accent-light);
    color: var(--gold-accent);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.step-content h3 {
    font-size: 2rem;
    font-family: var(--font-headings);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.step-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}


/* Quote Form File Upload Button Fix */
#select-photos-btn {
    display: inline-block !important; /* Ensure it's always visible */
    margin-top: 1rem;
}

/* Mobile Styles */
/* Tablet and Mobile Styles */
@media (max-width: 992px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-info-panel h2 {
        font-size: 2rem;
    }

    .quote-form-panel {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .step-row, .step-row-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .step-row-reverse .step-content {
        order: 1;
    }

    .step-row-reverse .step-visual {
        order: 2;
    }

    .step-visual {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }

    .hero {
        padding: 6rem 5%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        display: none; /* Hide nav links by default on mobile */
        position: absolute;
        top: 85px; /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--navy-bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }

    .nav-links.active {
        display: flex; /* Show when active */
    }

    .nav-links ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
        position: absolute;
        top: 30px;
        right: 5%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

/* Quote Success Modal */
.quote-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.quote-success-content {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: slideIn 0.4s ease-out;
}

.modal-logo {
    max-width: 150px;
    margin: 0 auto 20px auto;
    display: block;
}

.quote-success-content h2 {
    color: #ccad00;
    margin-bottom: 20px;
}

.quote-success-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.quote-success-content button {
    background-color: #ccad00;
    border: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.quote-success-content button:hover {
    background-color: #a88c00;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
