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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    background: #fdfdf7;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 231, 235, 1);
    z-index: 50;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

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

.nav-logo {
    width: 2.5rem;
    height: 2.5rem;
    background: rgb(51, 65, 85);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(30, 41, 59);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.025em;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: rgb(71, 85, 105);
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(15, 23, 42);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(51, 65, 85);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    background: white;
    border-top: 1px solid rgba(229, 231, 235, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: rgb(71, 85, 105);
    font-weight: 500;
    padding: 0.5rem 0;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: rgb(15, 23, 42);
}

.mobile-nav-cta {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: rgb(51, 65, 85);
    color: white;
    border-color: rgb(51, 65, 85);
}

.btn-primary:hover {
    background: rgb(30, 41, 59);
    border-color: rgb(30, 41, 59);
}

.btn-secondary {
    background: rgb(245, 158, 11);
    color: white;
    border-color: rgb(245, 158, 11);
}

.btn-secondary:hover {
    background: rgb(217, 119, 6);
    border-color: rgb(217, 119, 6);
}

.btn-outline {
    background: transparent;
    color: rgb(51, 65, 85);
    border-color: rgb(203, 213, 225);
}

.btn-outline:hover {
    background: rgb(248, 250, 252);
    border-color: rgb(148, 163, 184);
}

/* Hero Section */
.hero {
    padding-top: 6rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom right, rgb(248, 250, 252), white);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 2rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    color: rgb(15, 23, 42);
    line-height: 1.1;
    font-family: 'Cinzel', serif;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title-accent {
    display: block;
    font-weight: 500;
}

.hero-description {
    font-size: 1.25rem;
    color: rgb(71, 85, 105);
    max-width: 32rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: rgb(71, 85, 105);
    padding-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.trust-green {
    color: rgb(22, 163, 74);
}

.trust-amber {
    color: rgb(245, 158, 11);
}

.trust-blue {
    color: rgb(37, 99, 235);
}

/* Stats Card */
.stats-card {
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2.5rem;
}

@media (min-width: 1024px) {
    .stats-card {
        margin-left: 2rem;
    }
}

.stats-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: rgb(15, 23, 42);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Cinzel', serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: rgb(15, 23, 42);
    margin-bottom: 0.5rem;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.875rem;
    color: rgb(71, 85, 105);
}

.stats-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(229, 231, 235, 1);
}

.stats-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgb(249, 250, 251), white);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .services-container {
        padding: 0 2rem;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 300;
    color: rgb(15, 23, 42);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.services-description {
    font-size: 1.25rem;
    color: rgb(71, 85, 105);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: white;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgb(243, 244, 246), rgb(229, 231, 235));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    width: 2rem;
    height: 2rem;
}

.service-blue i {
    color: rgb(37, 99, 235);
}

.service-pink i {
    color: rgb(219, 39, 119);
}

.service-green i {
    color: rgb(22, 163, 74);
}

.service-amber i {
    color: rgb(245, 158, 11);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(15, 23, 42);
    font-family: 'Cinzel', serif;
}

.service-description {
    color: rgb(71, 85, 105);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-btn {
    color: rgb(51, 65, 85);
    border-color: rgb(203, 213, 225);
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    padding: 0.5rem 1.5rem;
}

.service-btn:hover {
    background: rgb(248, 250, 252);
    border-color: rgb(148, 163, 184);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }
}

.about-title {
    font-size: 3rem;
    font-weight: 300;
    color: rgb(15, 23, 42);
    margin-bottom: 2.5rem;
    font-family: 'Cinzel', serif;
}

.about-description {
    font-size: 1.25rem;
    color: rgb(71, 85, 105);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-subdescription {
    font-size: 1.125rem;
    color: rgb(71, 85, 105);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    color: rgb(51, 65, 85);
    margin: 0 auto 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(15, 23, 42);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.benefit-description {
    color: rgb(71, 85, 105);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgb(249, 250, 251);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .contact-container {
        padding: 0 2rem;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 300;
    color: rgb(15, 23, 42);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
}

.contact-description {
    font-size: 1.25rem;
    color: rgb(71, 85, 105);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: rgb(51, 65, 85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(15, 23, 42);
    font-family: 'Cinzel', serif;
}

.contact-value {
    font-size: 1.125rem;
    color: rgb(51, 65, 85);
}

.contact-form-card {
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 1rem;
    background: white;
    padding: 2.5rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: rgb(15, 23, 42);
    margin-bottom: 2rem;
    font-family: 'Cinzel', serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input, .form-textarea {
    border: 1px solid rgb(229, 231, 235);
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.form-input {
    height: 3.5rem;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: rgb(148, 163, 184);
    box-shadow: 0 0 0 2px rgba(148, 163, 184, 0.2);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgb(107, 114, 128);
}

.form-textarea {
    resize: vertical;
    font-family: inherit;
}

.form-submit {
    width: 100%;
    height: 3.5rem;
    font-size: 1.125rem;
    border-radius: 0.5rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgb(107, 114, 128);
    text-align: center;
}

/* Footer */
.footer {
    background: rgb(15, 23, 42);
    color: white;
    padding: 4rem 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .footer-container {
        padding: 0 2rem;
    }
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 2rem;
    height: 2rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(15, 23, 42);
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Cinzel', serif;
}

.footer-description {
    color: rgb(148, 163, 184);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li {
    font-size: 0.875rem;
    color: rgb(148, 163, 184);
}

.footer-list button {
    background: none;
    border: none;
    color: rgb(148, 163, 184);
    cursor: pointer;
    font-size: 0.875rem;
    text-align: left;
    padding: 0;
}

.footer-list button:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgb(51, 65, 85);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgb(148, 163, 184);
}

/* Utility Classes */
.hidden {
    display: none;
}

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

/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-title,
    .about-title,
    .contact-title {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* 1. Universal Icon + Text Alignment */
.icon-text, 
.nav-brand, 
.nav-link, 
.mobile-nav-link, 
.btn, 
.trust-item, 
.stats-header, 
.stat-item, 
.contact-item, 
.benefit-item, 
.footer-brand, 
.footer-title, 
.footer-list li, 
.form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Adjust as needed */
}

/* 2. Ensure Lucide icons behave consistently */
[data-lucide] {
    flex-shrink: 0;
    width: 1.2em;
    height: 1.2em;
}

/* 3. Brand-specific fix (so text aligns properly with logo icon) */
.nav-brand .nav-logo,
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
}

/* 4. Optional: remove extra margin from icons if added earlier */
[data-lucide] {
    margin: 0;
}

/* 5. Optional: slight adjustments for footer sizing */
.footer-list-icon,
.footer-title-icon {
    width: 1.1em;
    height: 1.1em;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .stats-card {
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .stats-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stats-cta {
    margin-top: 1rem;
  }
}
