/* Branding Page Specific Styles */

/* Branding Types Section */
.branding-types-section {
    background: #f9fafb;
    padding: 80px 40px 40px 40px;
}

.branding-mockup img {
    border-radius: 15px;
}


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


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

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

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

.branding-type-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.15);
}

.branding-type-card.featured {
    border: 2px solid #00D9FF;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.1);
}

.branding-type-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: #00D9FF;
    color: #0A0E27;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branding-type-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
}

.branding-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.branding-type-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.branding-type-title {
    font-size: 1.375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
    padding: 0 32px;
    padding-top: 32px;
}

.branding-type-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    padding: 0 32px;
}

.branding-type-features {
    list-style: none;
    padding: 16px 32px 32px 32px;
    margin: 0;
    margin-top: auto;
    background: transparent;
    border-radius: 0;
}

.branding-type-features li {
    font-size: 0.875rem;
    color: #4b5563;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

@media (max-width: 768px) {
    .branding-types-section {
        padding: 60px 30px 80px 30px;
    }
    
    .branding-types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .branding-type-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .branding-type-card.featured {
        order: -1;
    }
}

@media (max-width: 480px) {
    .branding-types-section {
        padding: 50px 20px 70px 20px;
    }
    
    .branding-type-card {
        padding: 24px;
        max-width: 100%;
    }
    
    .branding-type-icon {
        font-size: 2rem;
    }
    
    .branding-type-title {
        font-size: 1.25rem;
    }
    
    .branding-type-features {
        padding: 14px 16px;
    }
}

/* Branding Type Card Link */
.branding-type-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

/* Branding Gallery Section */
.branding-gallery-section {
    padding: 60px 40px;
    background: white;
}

.branding-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.15);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .branding-gallery-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image {
        height: 250px;
    }
}

