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

body {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: #3c2e26;
    background-color: #f4f1e8;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(191, 152, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(160, 128, 85, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8b99c' fill-opacity='0.03'%3E%3Ccircle cx='60' cy='60' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    overflow-x: hidden;
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.3;
    color: #3c2e26;
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(60, 46, 38, 0.1);
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
}

h4 {
    font-weight: 600;
    font-size: 1.2rem;
}

p {
    font-size: 1.1rem;
    color: #5d4e3a;
    font-weight: 400;
    text-align: justify;
}

/* Buttons */
.btn-primary {
    background: #6b4423;
    color: #f4f1e8;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(107, 68, 35, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid #5a3a1f;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.4);
    background: #5a3a1f;
}

.btn-secondary {
    background: rgba(107, 68, 35, 0.1);
    color: #6b4423;
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 68, 35, 0.2);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: rgba(107, 68, 35, 0.2);
    transform: translateY(-1px);
}

.btn-outline {
    border: 2px solid #6b4423;
    color: #6b4423;
    padding: 12px 28px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    transition: all 0.3s ease;
    background: transparent;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1rem;
}

.btn-outline:hover {
    background: #6b4423;
    color: #f4f1e8;
    transform: translateY(-1px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Logo */
.logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 1px 3px rgba(107, 68, 35, 0.2));
}

/* Navigation */
.navbar {
    background: rgba(244, 241, 232, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid rgba(107, 68, 35, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(107, 68, 35, 0.1);
}

.navbar a:not(.nav-links a):not(.btn-primary):not(.btn-secondary) {
    text-decoration: none !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.nav-brand,
.nav-brand *,
.nav-brand span,
.nav-brand img {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.nav-brand:focus,
.nav-brand:active,
.nav-brand:visited,
.nav-brand:hover,
.nav-brand *:focus,
.nav-brand *:active,
.nav-brand *:visited,
.nav-brand *:hover {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3c2e26;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', serif;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

.brand-text:focus,
.brand-text:active,
.brand-text:visited,
.brand-text:hover {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

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

.nav-links a {
    text-decoration: none;
    color: #5d4e3a;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #5d4e3a;
    cursor: pointer;
}



/* Hero Section */
.hero {
    background: #f4f1e8;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(191, 152, 106, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(160, 128, 85, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: #3c2e26;
    text-shadow: 0 1px 2px rgba(60, 46, 38, 0.15);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #5d4e3a;
    line-height: 1.7;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
}

/* Service Diagram */
.service-diagram {
    background: #f8f5ee;
    border: 3px solid rgba(107, 68, 35, 0.2);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 6px 25px rgba(107, 68, 35, 0.15);
    width: 100%;
}

.diagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3c2e26;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.diagram-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    color: #6b4423;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    border-bottom: 1px solid rgba(107, 68, 35, 0.2);
    padding-bottom: 1rem;
}

.service-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-node {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(244, 241, 232, 0.8);
    border: 1px solid rgba(107, 68, 35, 0.15);
    border-radius: 3px;
}

.node-icon {
    width: 50px;
    height: 50px;
    background: #6b4423;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(107, 68, 35, 0.3);
}

.node-icon i {
    font-size: 1.3rem;
    color: #f4f1e8;
}

.node-label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1rem;
    color: #3c2e26;
    margin-bottom: 0.25rem;
}

.node-description {
    font-family: 'Crimson Text', serif;
    font-size: 0.9rem;
    color: #5d4e3a;
    font-style: italic;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0;
}

.connector-line {
    width: 2px;
    height: 20px;
    background: rgba(107, 68, 35, 0.3);
}

.connector-arrow {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #6b4423;
    font-weight: 600;
    margin-top: 0.5rem;
}

.outcome-section {
    text-align: center;
    border-top: 2px solid rgba(107, 68, 35, 0.2);
    padding-top: 1.5rem;
}

.outcome-arrow {
    font-size: 1.5rem;
    color: #6b4423;
    margin-bottom: 1rem;
    font-weight: 600;
}

.outcome-box {
    background: rgba(107, 68, 35, 0.1);
    border: 1px solid rgba(107, 68, 35, 0.2);
    border-radius: 3px;
    padding: 1rem;
}

.outcome-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #3c2e26;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.outcome-metrics {
    font-family: 'Crimson Text', serif;
    color: #5d4e3a;
    font-style: italic;
}

.metric {
    font-weight: 600;
    color: #6b4423;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
    color: #3c2e26;
}

.section-header p {
    font-size: 1.2rem;
    color: #806a55;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
    text-align: center;
}

/* Services Section */
.services {
    background: #f8f5ee;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #f4f1e8;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(107, 68, 35, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid rgba(107, 68, 35, 0.1);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #6b4423;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(107, 68, 35, 0.3);
    border: 2px solid #5a3a1f;
}

.service-icon i {
    font-size: 1.8rem;
    color: #f4f1e8;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #3c2e26;
}

.service-card p {
    line-height: 1.7;
}

/* Why Veltrex Section */
.benefits-grid {
    display: grid;
    gap: 3rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #f8f5ee;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(107, 68, 35, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(107, 68, 35, 0.1);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.25);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #6b4423;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(107, 68, 35, 0.3);
    border: 2px solid #5a3a1f;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #f4f1e8;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
    color: #3c2e26;
    text-align: center;
}

.benefit-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #6b4423;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #806a55;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Client Success Section */
.client-success {
    background: #f4f1e8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f5ee;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(107, 68, 35, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(107, 68, 35, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 68, 35, 0.25);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5d4e3a;
    text-align: left;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: #3c2e26;
}

.author-info span {
    color: #806a55;
    font-size: 0.9rem;
    font-style: italic;
}

.company-logo {
    width: 50px;
    height: 50px;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background: #6b4423;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4f1e8;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(107, 68, 35, 0.2);
    border: 1px solid #5a3a1f;
    font-family: 'Playfair Display', serif;
}

/* Final CTA Section */
.final-cta {
    background: #3c2e26;
    color: #f4f1e8;
    text-align: center;
}

.cta-content h2 {
    color: #f4f1e8;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(244, 241, 232, 0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.final-cta .btn-primary {
    background: #f4f1e8;
    color: #3c2e26;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    background: #f8f5ee;
}

/* Footer */
.footer {
    background: #2a1f17;
    color: #f4f1e8;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    margin-bottom: 0;
    color: #f4f1e8;
}

.footer-brand p {
    color: rgba(244, 241, 232, 0.7);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f4f1e8;
    font-family: 'Playfair Display', serif;
}

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

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

.footer-section a {
    color: rgba(244, 241, 232, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4c4a8;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #d4c4a8;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 2px solid rgba(244, 241, 232, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(244, 241, 232, 0.6);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-graphic {
        max-width: 400px;
    }
    
    .service-diagram {
        padding: 2rem;
    }
    
    .diagram-title {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        gap: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta a {
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 12px 24px;
    }
    
    .service-card,
    .testimonial-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .hero-graphic {
        max-width: 320px;
    }
    
    .service-diagram {
        padding: 1.5rem;
    }
    
    .service-node {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .node-icon {
        width: 40px;
        height: 40px;
    }
    
    .node-icon i {
        font-size: 1.1rem;
    }
    
    .diagram-title {
        font-size: 1.1rem;
    }
    
    .node-label {
        font-size: 0.9rem;
    }
    
    .node-description {
        font-size: 0.8rem;
    }
}

/* Prevent any accidental underlines on brand elements */
.nav-brand,
.nav-brand *,
.brand-text,
span.brand-text {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Cal.com Button Styling */
button.btn-primary {
    background: #6b4423;
    color: #f4f1e8;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(107, 68, 35, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid #5a3a1f;
    cursor: pointer;
}

button.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 68, 35, 0.4);
    background: #5a3a1f;
}

button.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Contact Section Styling */
.contact-section {
    background: #f8f5ee;
    padding: 80px 0;
}

.cal-embed-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(107, 68, 35, 0.15);
    border: 2px solid rgba(107, 68, 35, 0.1);
    overflow: hidden;
}