/* ===================================
   CSS Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Black & Gold Theme */
    --primary-gold: #D4AF37;
    --secondary-gold: #F4D03F;
    --dark-gold: #B8941E;
    --black: #000000;
    --off-black: #1A1A1A;
    --dark-gray: #2C2C2C;
    --medium-gray: #4A4A4A;
    --light-gray: #E5E5E5;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.3rem;
}

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

/* ===================================
   Utility Classes
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--black);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--black);
    position: relative;
}

.nav-links a:not(.cta-button):hover {
    color: var(--primary-gold);
}

.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

.nav-links .cta-button {
    background: var(--primary-gold);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 4px;
}

.nav-links .cta-button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Why Choose Section
   =================================== */

.why-choose {
    padding: var(--section-padding);
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 60px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--black);
}

.why-icon svg {
    width: 35px;
    height: 35px;
}

.why-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

/* ===================================
   Impact/Results Section
   =================================== */

.impact-section {
    padding: var(--section-padding);
    background: var(--off-black);
    color: var(--white);
}

.impact-section .section-label {
    color: var(--primary-gold);
}

.impact-section .section-title,
.impact-section .section-description {
    color: var(--white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 60px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-card.featured-stat {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-color: var(--primary-gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.featured-stat .stat-number {
    color: var(--black);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-stat .stat-label {
    color: var(--black);
}

.stat-description {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin: 0;
}

.featured-stat .stat-description {
    color: var(--off-black);
}

.industries-expertise {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.industries-expertise h3 {
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.expertise-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.expertise-tag:hover {
    background: var(--primary-gold);
    color: var(--black);
    border-color: var(--primary-gold);
}

.company-stages {
    margin-top: 3rem;
    text-align: center;
}

.company-stages h4 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.stages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stage-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
}

.stage-item strong {
    display: block;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stage-item span {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: var(--section-padding);
    background: var(--off-white);
}

/* Carousel Container */
.testimonials-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 60px;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Carousel Slides */
.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: var(--black);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.carousel-control:hover {
    background: var(--dark-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-control svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

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

.testimonial-rating span {
    color: var(--primary-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.author-info strong {
    display: block;
    color: var(--black);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ===================================
   Services Section
   =================================== */

.services {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.service-card.featured {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(135deg, var(--white) 0%, #FFFEF5 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-rate {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.service-features {
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-ideal {
    padding: 15px;
    background: var(--off-white);
    border-left: 3px solid var(--primary-gold);
    font-size: 0.95rem;
    margin-top: 20px;
}

.service-ideal strong {
    color: var(--black);
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-gold);
    border-radius: 8px;
    z-index: 0;
}

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

.about-text .section-label {
    margin-bottom: 0.5rem;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-item h4 {
    margin-bottom: 0.3rem;
    color: var(--black);
}

.value-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   Process Section
   =================================== */

.process {
    padding: var(--section-padding);
    background: var(--black);
    color: var(--white);
}

.process .section-label {
    color: var(--primary-gold);
}

.process .section-title,
.process .section-description {
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.process-step h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.process-timeline {
    margin-top: 1rem;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.process-timeline strong {
    color: var(--primary-gold);
    margin-right: 5px;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.faq-item {
    background: var(--off-white);
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: var(--white);
    transition: var(--transition);
}

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

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
}

.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 30px 25px;
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--black);
}

/* ===================================
   Trust Section
   =================================== */

.trust-section {
    padding: 60px 0;
    background: var(--primary-gold);
}

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

.trust-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: var(--black);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-item h4 {
    margin-bottom: 0.3rem;
    color: var(--black);
    font-size: 1.1rem;
}

.trust-item p {
    margin: 0;
    color: var(--off-black);
    font-size: 0.9rem;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    text-align: center;
}

.cta-content h2 {
    color: var(--black);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--off-black);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--black);
    color: var(--primary-gold);
    border-color: var(--black);
}

.cta-section .btn-primary:hover {
    background: var(--off-black);
    border-color: var(--off-black);
}

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

.btn-secondary-alt {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary-alt:hover {
    background: var(--black);
    color: var(--primary-gold);
    border-color: var(--black);
}

/* ===================================
   Resource/Value-Add Section
   =================================== */

.resource-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.resource-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.resource-text h2 {
    margin-bottom: 1.5rem;
    color: var(--black);
}

.resource-text > p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.resource-features {
    padding-left: 0;
    margin-bottom: 0;
}

.resource-features li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: var(--medium-gray);
    font-size: 1rem;
}

.resource-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.resource-form {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-gold);
}

.resource-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--black);
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-form input {
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.download-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.download-form button {
    margin-top: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    margin-bottom: 1rem;
}

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

.contact-methods {
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.contact-method h4 {
    margin-bottom: 0.3rem;
    color: var(--black);
}

.contact-method a {
    color: var(--primary-gold);
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--dark-gold);
}

.business-hours {
    padding: 20px;
    background: var(--white);
    border-left: 3px solid var(--primary-gold);
    border-radius: 4px;
}

.business-hours h4 {
    margin-bottom: 0.8rem;
    color: var(--black);
}

.business-hours p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--black);
    color: var(--light-gray);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

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

.footer-section a {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark-gray);
}

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

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        padding: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
    }
    
    /* Hero */
    .hero {
        min-height: 90vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-accent {
        top: -15px;
        left: -15px;
    }
    
    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Why Choose */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    /* Impact Section */
    .impact-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stages-list {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Carousel */
    .testimonials-carousel-container {
        padding: 0 50px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        min-height: 400px;
    }
    
    /* Trust Section */
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    /* Resource Section */
    .resource-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .expertise-tags {
        gap: 0.8rem;
    }
    
    .expertise-tag {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .testimonials-carousel-container {
        padding: 0 40px;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        min-height: 450px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .resource-form {
        padding: 30px 20px;
    }
}

/* ===================================
   Animations
   =================================== */

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

.service-card,
.process-step,
.value-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

/* ===================================
   Print Styles
   =================================== */

@media print {
    .navbar,
    .hero-buttons,
    .cta-section,
    .contact-form,
    .footer {
        display: none;
    }
    
    body {
        color: var(--black);
    }
}