/* Logo Design Page Specific Styles */

/* Logo Types Section */
.logo-types-section {
    background: #f9fafb;
    padding: 50px 40px 100px 40px;
}

.logo-types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.logo-type-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.logo-type-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
    transform: translateY(-4px);
}

.logo-type-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    color: #00D9FF;
}

.logo-type-icon svg {
    width: 100%;
    height: 100%;
}

.logo-type-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.logo-type-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.logo-type-best {
    font-size: 0.9rem;
    color: #ffffff;
    padding: 12px 16px;
    background: #0A0E27;
    border-radius: 8px;
    border-left: 3px solid #00D9FF;
}

.logo-type-best strong {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .logo-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-types-section {
        padding: 80px 30px;
    }
    
    .logo-types-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .logo-type-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .logo-types-section {
        padding: 60px 20px;
    }
    
    .logo-type-card {
        padding: 24px;
    }
    
    .logo-type-title {
        font-size: 1.25rem;
    }
}

/* Featured Packages Section */
.featured-packages-section {
    background: #ffffff;
    padding: 80px 40px;
}

.featured-packages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-top: 50px;
}

.featured-packages-container > .packages-visual {
    order: -1;
}

/* Left Column - Package Content */
.packages-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Show only the first two items on the left column; the rest are rendered in the bottom 3-column grid */
.packages-content .package-item:nth-child(n+3) {
    display: none;
}
.packages-title {
    padding-bottom: 40px;
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
    text-align: center;
}
.package-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-item:hover {
    opacity: 0.8;
}

.package-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.package-icon {
    flex-shrink: 0;
    padding-top: 4px;
}

.package-details {
    flex: 1;
}

.package-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.package-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.package-price {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
}

.package-save {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #00D9FF;
    background: rgba(0, 217, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.package-desc {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.package-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.package-list li {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
}

.package-list .check-icon {
    position: relative;
    top: 5px;
}

/* Right Column - Visual Mockup */
.packages-visual {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.visual-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chevron-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 8px,
        rgba(0, 217, 255, 0.15) 8px,
        rgba(0, 217, 255, 0.15) 16px
    );
    border-radius: 12px;
    z-index: 1;
}

.mockup-devices {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.laptop-mockup {
    position: relative;
}

.laptop-image {
    max-width: 100%;
    height: auto;
}

.branding-mockup {
    position: relative;
    bottom: 100px;
}

.business-cards {
    position: relative;
    transform: translateX(-30px);
}

.cards-image {
    max-width: 80%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.attribution {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.75rem;
    color: #9ca3af;
    font-style: italic;
    z-index: 3;
}

/* Bottom 3-column grid (Brand guide, Stationery, Full-Service Brand Pack) */
.bottom-packages-grid {
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    grid-column: 1 / -1;
}

.bottom-pack-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
}

.bottom-packages-grid > .bottom-pack-card:nth-child(2),
.bottom-packages-grid > .bottom-pack-card:nth-child(3) {
    border-left: 1px solid #e5e7eb;
}

.bottom-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.bottom-title {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.bottom-price {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.bottom-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Featured Packages Responsive */
@media (max-width: 992px) {
    .featured-packages-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packages-visual {
        position: relative;
        top: 0;
        min-height: 400px;
    }

    .bottom-packages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .bottom-packages-grid > .bottom-pack-card:nth-child(2),
    .bottom-packages-grid > .bottom-pack-card:nth-child(3) {
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding-top: 16px;
    }
}

@media (max-width: 768px) {
    .featured-packages-section {
        padding: 60px 20px;
    }
    
    .package-item {
        gap: 16px;
        padding-bottom: 24px;
    }
    
    .packages-content {
        gap: 24px;
    }
    
    .chevron-pattern {
        width: 300px;
        height: 300px;
    }

    .bottom-packages-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo Pricing Packages Section */

.logo-packages-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px 24px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 16px;
    align-items: start;
}

.package-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.12);
    transform: translateX(4px);
}

.package-featured {
    border: 2px solid #00D9FF;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.03) 0%, rgba(0, 217, 255, 0.01) 100%);
}

.package-icon {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
}

.package-icon svg {
    width: 48px;
    height: 48px;
}

.package-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.package-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.package-features li {
    font-size: 0.8125rem;
    color: #4b5563;
    line-height: 1.4;
}

.package-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    padding-top: 4px;
}

.package-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
}

.package-save {
    font-size: 0.6875rem;
    font-weight: 500;
    color: #00D9FF;
    background: rgba(0, 217, 255, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Visual Mockup Area */
.packages-visual {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.packages-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 8px,
        rgba(0, 217, 255, 0.15) 8px,
        rgba(0, 217, 255, 0.15) 16px
    );
    border-radius: 12px;
    z-index: 1;
}

.mockup-items {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Packages Section Responsive */
@media (max-width: 992px) {
    .logo-packages-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .packages-visual {
        position: relative;
        top: 0;
        min-height: 400px;
    }
    
    .mockup-pattern {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    
    .package-card {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }
    
    .package-pricing {
        grid-column: 2;
        align-items: flex-start;
        margin-top: 8px;
    }
    
    .package-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .mockup-pattern {
        width: 250px;
        height: 250px;
    }
}

/* Logo Pricing Section */
.logo-pricing {
    background: #0A0E27;
    padding: 80px 40px;
}

.logo-pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.logo-pricing .logo-section-badge {
    background: rgba(0, 217, 255, 0.2);
    color: #00D9FF;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.logo-pricing .logo-section-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.logo-pricing .logo-section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

.logo-pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.logo-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.logo-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
}

.logo-pricing-featured {
    border: 2px solid #00D9FF;
    transform: scale(1.02);
}

.logo-pricing-featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.logo-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00D9FF;
    color: #0A0E27;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.logo-pricing-amount {
    margin-bottom: 16px;
}

.logo-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0A0E27;
}

.logo-pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0A0E27;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.logo-pricing-tagline {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.logo-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.logo-pricing-features li {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-pricing-features .check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.logo-pricing-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: #0A0E27;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logo-pricing-cta:hover {
    background: #1a1f3d;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Logo Pricing Responsive */
@media (max-width: 992px) {
    .logo-pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-pricing-featured {
        transform: scale(1);
    }
    
    .logo-pricing-featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .logo-pricing {
        padding: 60px 30px;
    }
    
    .logo-pricing-card {
        padding: 30px 24px;
    }
    
    .logo-pricing .logo-section-title {
        font-size: 1.75rem;
    }
    
    .logo-price {
        font-size: 2rem;
    }
    
    .logo-pricing-title {
        font-size: 1.1rem;
    }
}

/* FAQ Section */
.logo-faqs-section {
    background: #ffffff;
    padding: 0px 40px 100px;
}

.logo-faqs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-title {
    font-size: 3rem;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 40px 0;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question span {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.5;
}

.faq-question:hover span {
    color: #00D9FF;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #00D9FF;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 20px;
    font-weight: 600;
}

.faq-question[aria-expanded="true"] {
    background: #ffffff;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4a5568;
}

@media (max-width: 968px) {
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo-faqs-section {
        padding: 60px 30px;
    }
    
    .faqs-title {
        font-size: 2.25rem;
    }
    
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px 24px;
    }
}

@media (max-width: 480px) {
    .logo-faqs-section {
        padding: 50px 20px;
    }
    
    .faqs-title {
        font-size: 1.875rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
    }
}
