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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #666666;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1B4D3E;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
}

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

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

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

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

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

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Hero Section - Left Aligned Layout */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 8% 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    border: 3px solid #1B4D3E;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 15px 40px rgba(27, 77, 62, 0.2);
}

.hero-content {
    z-index: 1;
    position: relative;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 5.5rem;
    background: linear-gradient(135deg, #1B4D3E 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #1B4D3E;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.15);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Problem Section */
.problem-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
}

.problem-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Problem Section Subtitle */
.problem-section p.section-subtitle,
.problem-section p.problem-subtitle,
.problem-section .section-subtitle,
.problem-section .problem-subtitle {
    text-align: center !important;
    font-size: 1.4rem !important;
    color: #666666 !important;
    margin-bottom: 60px !important;
    font-weight: 500 !important;
    font-style: italic !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #B8860B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1B4D3E;
}

.problem-card p {
    color: #666666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #E0E0E0 0%, #d1d5db 100%);
    position: relative;
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #666666;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.steps-intro {
    font-size: 1.2rem;
    color: #1B4D3E;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    align-items: flex-start;
    position: relative;
}

.step:not(:last-child)::after {
    display: none;
}

.step-number {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #FFD700 100%);
    color: #1B4D3E;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1B4D3E;
}

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

/* FAQ Section */
.faq-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    color: #1B4D3E;
    flex: 1;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #D4AF37;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-answer {
    display: none;
    padding: 0 40px 30px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-item:first-child .faq-answer {
    display: none;
}

.faq-answer p {
    color: #666666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 20px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: #666666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-answer a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #B8860B;
}

/* About Section */
.about-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-section .cta-button {
    display: inline-block;
    margin-top: 30px;
}

.about-text p {
    font-size: 1.3rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Contact Section */
.contact-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #003366;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1B4D3E;
}

.contact-section p {
    font-size: 1.4rem;
    margin-bottom: 60px;
    color: #666666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-section .cta-button {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #1B4D3E;
    font-size: 1.2rem;
    padding: 25px 50px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.contact-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 87, 34, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .container {
        padding: 0 6%;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 100px 6% 120px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 5%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 80px 5% 100px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .problem-card {
        padding: 40px 30px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .about-content {
        padding: 60px 40px;
    }
    
    .contact-section h2 {
        font-size: 2.5rem;
    }
    
    .contact-section p {
        font-size: 1.2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .problem-card,
    .about-content {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #1B4D3E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover .hamburger-line {
    background: #D4AF37;
}

/* Side Panel */
.side-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1003;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.side-panel.active {
    right: 0;
}

.side-panel-content {
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-panel-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(27, 77, 62, 0.3);
}

.side-panel-header h3 {
    color: #1B4D3E;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close-btn {
    display: none;
}

.side-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-link {
    color: #1B4D3E;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(27, 77, 62, 0.1);
    border-color: #1B4D3E;
    color: #1B4D3E;
}

/* Contact Details in Side Panel */
.contact-details {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(27, 77, 62, 0.2);
}

.contact-details h4 {
    color: #1B4D3E;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    color: #1B4D3E;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-link:hover {
    background: rgba(27, 77, 62, 0.1);
    border-color: #1B4D3E;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-weight: bold;
}

/* LinkedIn "in" logo styling */
.contact-link[href*="linkedin"] .contact-icon {
    background: linear-gradient(135deg, #1B4D3E 0%, #2D6B5F 100%);
    color: white;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 2px 4px;
    width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(27, 77, 62, 0.3);
}

.contact-text {
    font-size: 1rem;
    font-weight: 500;
}

/* Email icon styling to match website theme */
.contact-link[href*="mailto"] .contact-icon {
    background: linear-gradient(135deg, #1B4D3E 0%, #2D6B5F 100%);
    color: white;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 2px 4px;
    width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(27, 77, 62, 0.3);
}

/* Ensure consistent styling across all pages */
.side-panel .contact-details {
    margin-top: auto !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(27, 77, 62, 0.2) !important;
}

.side-panel .contact-details h4 {
    color: #1B4D3E !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
}

.side-panel .contact-item {
    margin-bottom: 15px !important;
}

.side-panel .contact-link {
    display: flex !important;
    align-items: center !important;
    color: #1B4D3E !important;
    text-decoration: none !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.side-panel .contact-link:hover {
    background: rgba(27, 77, 62, 0.1) !important;
    border-color: #1B4D3E !important;
    transform: translateX(5px) !important;
}

/* Side Panel CTA Button */
.side-panel-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(27, 77, 62, 0.2);
}

.side-panel-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #1B4D3E;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.side-panel-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    border-color: #1B4D3E;
}

/* Body scroll prevention when panel is open */
body.panel-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Body scroll lock when panel is open */
body.panel-open {
    overflow: hidden;
}

/* Pricing Section */
.pricing-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

.pricing-section h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 20px;
}

.pricing-section .section-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #666666;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.pricing-card.featured {
    border-color: #D4AF37;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1B4D3E;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #1B4D3E;
    margin-bottom: 20px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    color: #1B4D3E;
    font-weight: 700;
}

.amount {
    font-size: 3rem;
    color: #1B4D3E;
    font-weight: 700;
}

.period {
    font-size: 1.2rem;
    color: #666666;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

.pricing-note {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: rgba(27, 77, 62, 0.05);
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-note {
    text-align: center;
    font-style: italic;
    color: #666666;
    margin-top: 10px;
    font-size: 0.9rem;
}

.pricing-alternative {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.pricing-alternative p {
    color: #1B4D3E;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Services Section */
.services-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

.services-section h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 20px;
}

.services-section .section-intro {
    text-align: center;
    font-size: 1.4rem;
    color: #666666;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.service-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1B4D3E 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 0 30px 0;
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.3);
}

.service-card h3 {
    font-size: 1.8rem;
    color: #1B4D3E;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
    font-size: 1.1rem;
}

.services-process {
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 80px 0;
    border: 2px solid rgba(27, 77, 62, 0.1);
}

.services-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1B4D3E;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-process .process-step {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-align: center;
}

.services-process .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.services-process .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B4D3E 0%, #D4AF37 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.3);
}

.services-process .step-content h3 {
    font-size: 1.4rem;
    color: #1B4D3E;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-process .step-content p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #1B4D3E 0%, #2d5a4a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin-top: 80px;
    color: white;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.services-cta .cta-button {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    color: #1B4D3E;
    font-weight: 600;
    padding: 18px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.services-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

/* ===== PRICING PAGE SPECIFIC STYLES ===== */
/* These styles ONLY affect the pricing page, not the rest of the website */

/* Pricing Section */
.pricing-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-section h1 {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-section .section-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Main Service Card - Clean Version for Pricing Page Only */
.main-service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(27, 77, 62, 0.15);
    border: 3px solid #1B4D3E;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 80px;
}

.main-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.main-service-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.main-service-header {
    flex: 1;
    text-align: center;
}

.main-service-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1B4D3E;
}

.main-service-price {
    font-size: 4rem;
    font-weight: 800;
    color: #1B4D3E;
    margin-bottom: 20px;
}

.main-service-price .currency {
    font-size: 4rem;
    vertical-align: baseline;
}

.main-service-price .amount {
    font-size: 4rem;
    font-weight: 800;
}

.main-service-price .period {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
}

.main-service-header .pricing-note {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.main-service-features {
    flex: 1;
}

.main-service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-service-features li {
    padding: 12px 0;
    color: #666;
    font-size: 1.2rem;
    position: relative;
    padding-left: 30px;
}

.main-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1B4D3E;
    font-weight: bold;
    font-size: 1.4rem;
}

.pricing-alternative {
    margin: 30px 0;
    text-align: center;
}

.pricing-alternative p {
    color: #1B4D3E;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.main-service-card .cta-button {
    background: linear-gradient(135deg, #1B4D3E, #2D5A4A);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
}

.main-service-card .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 77, 62, 0.4);
    background: linear-gradient(135deg, #2D5A4A, #1B4D3E);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #1B4D3E;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 3;
}

/* Additional Services for Pricing Page */
.additional-services-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 60px;
}

.pricing-section .additional-services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    max-width: 1200px !important;
    align-items: stretch !important;
}

.pricing-section .service-card {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    display: block !important;
}

/* Service Cards for Pricing Page Only */
.pricing-section .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 77, 62, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

.pricing-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(27, 77, 62, 0.15);
    border-color: rgba(27, 77, 62, 0.2);
}

.pricing-section .service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1B4D3E;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1B4D3E;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-price .currency {
    font-size: 2.8rem;
    vertical-align: baseline;
}

.service-price .amount {
    font-size: 2.8rem;
    font-weight: 800;
}

.service-price .period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.pricing-section .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex: 1;
}

.pricing-section .service-features li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 25px;
    font-size: 1rem;
}

.pricing-section .service-features li:before {
    content: '';
    position: absolute;
    left: 0;
    color: #1B4D3E;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-section .service-card .cta-button {
    background: linear-gradient(135deg, #1B4D3E, #2D5A4A);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 77, 62, 0.3);
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    max-width: 200px;
    margin-top: auto;
    align-self: flex-end;
}

.pricing-section .service-card .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 77, 62, 0.4);
    background: linear-gradient(135deg, #2D5A4A, #1B4D3E);
}

/* Responsive Design for Pricing Page Only */
@media (max-width: 1024px) {
    .pricing-section .additional-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        max-width: 100% !important;
    }

    .main-service-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .pricing-section .additional-services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        max-width: 100% !important;
    }
    
    .main-service-header h2 {
        font-size: 2.5rem;
    }
    
    .main-service-price {
        font-size: 3rem;
    }
    
    .main-service-card {
        padding: 40px 30px;
    }
    
    .services-cta {
        padding: 30px 15px;
        margin-top: 50px;
    }
    
    .services-cta h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .services-cta p {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
}
