/* ===========================================
   SERVICES PAGE SPECIFIC STYLES
   =========================================== */

/* Customized Service Section (Original Classes) */
.customized-service {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-label {
    font-size: 16px;
    color: #fd6a11;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #fd6a11;
}

.service-card.highlighted {
    background: linear-gradient(135deg, #fd6a11 0%, #ff8533 100%);
    color: #fff;
    border-color: #fd6a11;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card.highlighted .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon i {
    font-size: 24px;
    color: #fd6a11;
    transition: all 0.3s ease;
}

.service-card.highlighted .card-icon i {
    color: #fff;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.service-card.highlighted h3 {
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.service-card.highlighted p {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Contact Options Section */
.services-contact-options {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 16px;
    color: #fd6a11;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-option-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.services-option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #fd6a11;
}

.services-option-card.services-highlighted {
    background: linear-gradient(135deg, #fd6a11 0%, #ff8533 100%);
    color: #fff;
    border-color: #fd6a11;
}

.services-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.services-option-card.services-highlighted .services-icon {
    background: rgba(255, 255, 255, 0.2);
}

.services-icon i {
    font-size: 24px;
    color: #fd6a11;
    transition: all 0.3s ease;
}

.services-option-card.services-highlighted .services-icon i {
    color: #fff;
}

.services-option-card:hover .services-icon {
    transform: scale(1.1);
}

.services-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.services-option-card.services-highlighted .services-card-title {
    color: #fff;
}

.services-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.services-option-card.services-highlighted .services-card-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Banner Enhancements */
section.banner {
    position: relative;
    overflow: hidden;
}

.services-contaiener {
    position: relative;
    z-index: 2;
}

/* Services Hero Image */
.services-hero-img {
    position: relative;
    z-index: 1;
}

.services-hero-img img {
    width: 100%;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Services Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        max-width: 960px;
        gap: 20px;
    }
    
    .services-title {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-contact-options {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .services-option-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services-title {
        font-size: 22px;
    }
    
    .services-contact-options {
        padding: 50px 0;
    }
    
    .services-option-card {
        padding: 25px 15px;
    }
    
    .services-card-title {
        font-size: 16px;
    }
    
    .services-card-desc {
        font-size: 13px;
    }
}

/* Animation for services cards */
@keyframes services-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-option-card {
    animation: services-fadeInUp 0.6s ease-out;
}

.services-option-card:nth-child(1) { animation-delay: 0.1s; }
.services-option-card:nth-child(2) { animation-delay: 0.2s; }
.services-option-card:nth-child(3) { animation-delay: 0.3s; }
.services-option-card:nth-child(4) { animation-delay: 0.4s; }

/* Services page specific utilities */
.services-text-primary {
    color: #fd6a11 !important;
}

.services-bg-primary {
    background-color: #fd6a11 !important;
}

.services-border-primary {
    border-color: #fd6a11 !important;
}

/* Services button styles */
.services-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #fd6a11;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fd6a11;
}

.services-btn:hover {
    background-color: transparent;
    color: #fd6a11;
    text-decoration: none;
}

.services-btn-outline {
    background-color: transparent;
    color: #fd6a11;
    border: 2px solid #fd6a11;
}

.services-btn-outline:hover {
    background-color: #fd6a11;
    color: #fff;
}

/* ===========================================
   LOGO DESIGN SECTION
   =========================================== */

.logo-design-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.logo-design-section .row {
    align-items: center;
}

.logo-design-image {
    position: relative;
}

.logo-design-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-design-image:hover img {
    transform: scale(1.02);
}

.logo-design-content {
    padding-left: 40px;
}

.logo-design-title {
    font-size: 36px;
    font-weight: 700;
    color: #fd6a11;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.logo-design-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #fd6a11;
}

.logo-design-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

.logo-design-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.design-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #fd6a11;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.design-tag.secondary {
    background-color: transparent;
    color: #fd6a11;
    border: 2px solid #fd6a11;
}

.design-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 106, 17, 0.3);
}

.design-tag.secondary:hover {
    background-color: #fd6a11;
    color: #fff;
}

.design-tag i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.design-tag:hover i {
    transform: translateX(3px);
}

/* Logo Design Responsive */
@media (max-width: 992px) {
    .logo-design-content {
        padding-left: 20px;
        margin-top: 40px;
    }
    
    .logo-design-title {
        font-size: 32px;
    }
    
    .logo-design-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .logo-design-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }
    
    .logo-design-title {
        font-size: 28px;
    }
    
    .logo-design-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .logo-design-tags {
        justify-content: center;
    }
    
    .logo-design-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .logo-design-title {
        font-size: 24px;
    }
    
    .logo-design-description {
        font-size: 14px;
    }
    
    .design-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* ===========================================
   STATISTICS SECTION
   =========================================== */

.statistics-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #fd6a11 0%, #ff8533 100%);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fd6a11;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.stat-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Animation for counting effect */
.stat-number {
    opacity: 0;
    animation: countUp 0.8s ease-out 0.3s forwards;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for each stat item */
.stat-item:nth-child(1) .stat-number { animation-delay: 0.2s; }
.stat-item:nth-child(2) .stat-number { animation-delay: 0.4s; }
.stat-item:nth-child(3) .stat-number { animation-delay: 0.6s; }
.stat-item:nth-child(4) .stat-number { animation-delay: 0.8s; }

/* Statistics Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        max-width: 960px;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .statistics-section {
        padding: 80px 0;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    .stat-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-title {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .stat-description {
        font-size: 12px;
    }
}

/* ===========================================
   SERVICES PAGE LAYOUT ENHANCEMENTS
   =========================================== */

/* Enhanced Container Width */
.services-page .container {
    max-width: 1400px;
    width: 95%;
}

/* Section Spacing and Visual Hierarchy */
.services-section-spacing {
    margin: 100px 0;
    padding: 60px 0;
    position: relative;
}

/* Alternating Section Backgrounds */
.logo-design-section:nth-of-type(even) {
    background-color: #f8f9fa;
    position: relative;
}

.logo-design-section:nth-of-type(odd) {
    background-color: #ffffff;
    position: relative;
}

/* Section Dividers */
.logo-design-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fd6a11 50%, transparent 100%);
}

/* Enhanced Content Spacing */
.logo-design-content {
    padding: 50px 40px;
}

.logo-design-image {
    padding: 30px 20px;
}

/* Improved Typography */
.logo-design-title {
    margin-bottom: 35px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.logo-design-title::after {
    bottom: 0;
    width: 80px;
    height: 4px;
}

.logo-design-description {
    margin-bottom: 45px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* Enhanced Tag Styling */
.logo-design-tags {
    gap: 25px;
}

.design-tag {
    padding: 12px 24px;
    font-size: 15px;
    letter-spacing: 0.8px;
    border-radius: 30px;
}

/* Services Page Unique Identity */
body.services-page {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.services-page .banner {
    background: linear-gradient(135deg, rgba(253,106,17,0.05) 0%, rgba(253,106,17,0.02) 100%);
}

/* Section Margins */
.customized-service {
    margin: 80px 0;
}

.statistics-section {
    margin: 80px 0;
}

/* Enhanced Responsive Design */
@media (max-width: 1400px) {
    .services-page .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .services-page .container {
        max-width: 1140px;
    }
    
    .services-section-spacing {
        margin: 80px 0;
        padding: 50px 0;
    }
}

@media (max-width: 992px) {
    .services-page .container {
        max-width: 960px;
    }
    
    .logo-design-content {
        padding: 40px 20px;
    }
    
    .services-section-spacing {
        margin: 60px 0;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .services-page .container {
        max-width: 720px;
        width: 90%;
    }
    
    .logo-design-content {
        padding: 30px 15px;
        text-align: center;
    }
    
    .logo-design-image {
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {
    .services-page .container {
        width: 95%;
    }
    
    .services-section-spacing {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .logo-design-content {
        padding: 20px 10px;
    }
}
