/* Base Styles */
:root {
    --brand-dark: #241815;
    --brand-amber: #FFAA17FF;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container.container--small {
    max-width: 64rem !important;
}

/* Utility Classes */
.text-amber {
    color: var(--brand-amber);
}

.bg-amber {
    background-color: var(--brand-amber);
}

.bg-dark {
    background-color: var(--brand-dark);
}

.text-white {
    color: var(--white);
}

.mr-2 {
    margin-right: 0.5rem;
}

.w-full {
    width: 100%;
}

/* Button Styles */
.btn-primary {
    background-color: var(--brand-amber);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e5940e;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-amber {
    background-color: transparent;
    color: var(--brand-dark);
    border: 2px solid var(--brand-amber);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-amber:hover {
    background-color: var(--brand-amber);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--brand-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-white:hover {
    background-color: var(--gray-100);
}

/* Section Styles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--brand-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgb(226, 232, 240);
    border-radius: 8px;
    min-height: 450px;
}

.card-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: var(--brand-amber);
    color: var(--white);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content_pk h1 {
    color: #fff;
}

.hero-content p {
    font-size: 19px;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-700);
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Packages Section */
.packages-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.packages-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}


@media (min-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



.dg-btn__icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(0, -50%);
}

.dg-btn__icon svg path {
    color: #222429FF;
}

.hover-btn:hover .dg-btn__icon svg path {
    color: var(--white);
}

.package-card {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -1rem;
    display: inline-flex;
    justify-content: center;
    background: #FFAA17FF;
    max-width: fit-content;
    color: #fff;
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    font-weight: 500;
    transform: translate(-50%, 0);
}

.popular-badge span {
    background-color: var(--brand-amber);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: var(--brand-amber);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.description {
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 1.5rem;
}

.features-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.border-amber {
    border: 2px solid var(--brand-amber);
}

/* Custom Package Section */
.custom-package-section {
    padding: 3rem 0;
    background-color: var(--gray-50);
}

.custom-package-card {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    border: 1px solid var(--gray-100);
}

.icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #f4a3161a;
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.icon-container i::before {
    color: #FFAA17FF;
    font-size: 38px;
}

.icon-container div {
    background-color: rgba(244, 163, 22, 0.1);
    padding: 1rem;
    border-radius: 9999px;
}

.custom-package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.custom-package-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Sample Report Section */
.sample-report-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.sample-report-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .sample-report-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.report-preview {
    grid-column: span 3;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.report-preview img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.report-details {
    grid-column: span 2;
}

.report-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.report-details ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.report-details li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.steps-container {
    position: relative;
    margin-top: 3rem;
}

.steps-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gray-200);
    transform: translateY(-50%);
    z-index: -1;
    display: none;
}

@media (min-width: 1024px) {
    .steps-line {
        display: block;
    }
}

.steps-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    text-align: center;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #241815;
    border-radius: 999px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -1rem;
    display: inline-flex;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    align-items: center;
    transform: translate(-50%, 0);
}

.step-number span {
    background-color: var(--brand-dark);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4a3161a;
    border-radius: 50%;
}

.step-icon svg {
    width: 48px;
    height: 48px;
}

.step-icon div {
    background-color: rgba(244, 163, 22, 0.1);
    border-radius: 9999px;
    padding: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.4;
}

/* Case Studies Section */
.case-studies-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.case-studies-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
}

.case-study-btn {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-study-card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.case-study-image {
    height: 12rem;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
    background-color: var(--white);
}

.case-study-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 8px;
}

.case-study-meta span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.case-study-meta i::before {
    color: #FFAA17FF;
    font-size: 18px;
}

.case-study-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.case-study-content p {
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.6;
}

.case-study-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.case-study-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-study-content li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--brand-dark);
    color: var(--white);
}

.testimonials-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonials-section p {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonials-section_pk h2{
    color: #fff;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.quote-mark {
    font-size: 2.25rem;
    color: var(--brand-amber);
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

p.author-name {
    font-weight: 600;
    margin-bottom: 7px;
}

.author-position {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Companies Section */
.companies-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.companies-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.company-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.company-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.company-logo {
    height: 5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.company-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.company-card p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    margin-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.seo-faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}

.seo-faq-item__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 12px;
}


.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
}

.faq-question i:first-child {
    margin-right: 0.75rem;
}

.faq-answer {
    padding-left: 2.25rem;
    padding-top: 0.5rem;
    color: var(--gray-600);
    display: none;
    line-height: 1.5;
}

.faq-answer.active {
    display: block;
}

.faq-arrow {
    transition: transform 0.2s ease;
}

.faq-arrow.rotate {
    transform: rotate(180deg);
}

/* CTA Banner */
.cta-banner {
    padding: 4rem 0;
    background-color: var(--brand-amber);
    text-align: center;
}

.cta-banner h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--brand-dark);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}