/* ================================
   Yaman Tanker Suyu - Main Stylesheet
   ================================ */

:root {
    --primary-color: #0056b3;
    --primary-dark: #003d82;
    --primary-light: #0066cc;
    --secondary-color: #0099ff;
    --accent-color: #ffa500;
    --accent-dark: #ff8c00;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #ddd;
    --white: #ffffff;
    --success-color: #28a745;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    --gradient-secondary: linear-gradient(135deg, #0099ff 0%, #0056b3 100%);
    --gradient-accent: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.top-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.top-header .contact-info a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.top-header .contact-info a:hover {
    color: var(--accent-color);
}

.main-header {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 6px 30px rgba(0, 86, 179, 0.12);
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Header CTA Button */
.btn-header-cta {
    background: var(--gradient-accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

/* ================================
   HERO SLIDER
   ================================ */

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slider .carousel-item {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-slider .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.hero-slider .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slider .carousel-caption p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ================================
   SECTIONS
   ================================ */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ================================
   SERVICE CARDS
   ================================ */

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    display: block;
    color: var(--text-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--text-color);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-body {
    padding: 25px;
}

.service-card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card-body p {
    color: #666;
    margin-bottom: 15px;
}

.service-card-body .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card-body .read-more:hover {
    color: var(--secondary-color);
}

/* ================================
   ABOUT SECTION
   ================================ */

.about-content {
    padding: 40px;
    background: var(--light-color);
    border-radius: 10px;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.about-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.about-features li i {
    color: var(--success-color);
    font-size: 1.3rem;
}

/* ================================
   GALLERY
   ================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 86, 179, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item:hover i {
    opacity: 1;
}

/* ================================
   CONTACT
   ================================ */

.contact-info-box {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-info-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-box:hover i {
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-box p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-info-box a {
    color: inherit;
    text-decoration: none;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-main {
    padding: 70px 0 40px;
    position: relative;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    border-color: var(--primary-color);
}

.footer-widget {
    padding-left: 20px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    color: var(--white);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-links a:hover i {
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact li i {
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.footer-contact .contact-info span {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-info a,
.footer-contact .contact-info p {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-contact .contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-bottom p {
    margin: 0;
    color: #b8b8b8;
    font-size: 0.9rem;
}

.copyright {
    margin: 0;
}

.designed-by {
    margin: 0;
}

.kukumav-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.kukumav-link::after {
    content: '↗';
    opacity: 0;
    transform: translate(-5px, 5px);
    transition: all 0.3s ease;
}

.kukumav-link:hover {
    color: var(--white);
    text-decoration: none;
}

.kukumav-link:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================================
   MOBILE STICKY BUTTONS
   ================================ */

.mobile-sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.mobile-sticky-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.mobile-sticky-buttons .btn-phone {
    background: var(--primary-color);
}

.mobile-sticky-buttons .btn-whatsapp {
    background: #25D366;
}

.mobile-sticky-buttons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ================================
   SERVICE DETAIL PAGE
   ================================ */

.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.service-detail-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content {
    padding: 60px 0;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.service-detail-content ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.service-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.cta-section {
    background: linear-gradient(135deg, #cfd1d4 0%, #ffffff 100%);
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-call,
.btn-whatsapp-cta {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-call:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-whatsapp-cta {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp-cta:hover {
    background: transparent;
    color: #25D366;
}

.related-services {
    margin-top: 60px;
}

.related-services h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

/* ================================
   BREADCRUMB
   ================================ */

.breadcrumb-section {
    background: var(--light-color);
    padding: 20px 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 991px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 500px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 2.3rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-detail-hero h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    /* Hide phone in header on mobile */
    .top-header {
        display: none;
    }
    
    /* Show mobile sticky buttons */
    .mobile-sticky-buttons {
        display: flex;
    }

    /* Header CTA Button Mobile */
    .btn-header-cta {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider,
    .hero-slider .carousel-item {
        height: 400px;
    }
    
    .hero-slider .carousel-caption h1 {
        font-size: 1.8rem;
    }
    
    .hero-slider .carousel-caption p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card img {
        height: 200px;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-about,
    .footer-widget {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 35px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-desc {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright,
    .designed-by {
        font-size: 0.85rem;
    }
    
    .service-detail-hero {
        padding: 50px 0;
    }
    
    .service-detail-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-detail-content {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* New Sections Mobile Styles */
    .stats-section {
        padding: 50px 0;
    }

    .stat-box {
        padding: 28px 20px;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .why-choose-section,
    .features-detailed,
    .process-section,
    .testimonials-section {
        padding: 50px 0;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .process-box {
        padding: 40px 25px 30px;
    }

    .process-number {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        top: -20px;
    }

    .process-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
        margin: 20px auto 20px;
    }

    .feature-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .cta-banner,
    .cta-banner-fullwidth {
        padding: 40px 0;
        text-align: center;
    }

    .cta-banner-title {
        font-size: 1.8rem;
    }

    .cta-banner-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn-cta-white,
    .btn-cta-outline {
        display: block;
        width: 100%;
        margin: 0 0 10px 0 !important;
    }


    
    .btn-call,
    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .mobile-sticky-buttons a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.bg-light-custom {
    background: var(--light-color);
}

.text-primary-custom {
    color: var(--primary-color);
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ================================
   STATS SECTION
   ================================ */

.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stat-box {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #e8eef5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 86, 179, 0.2);
    box-shadow: 0 12px 28px rgba(0, 86, 179, 0.12);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon {
    opacity: 1;
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-accent);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
    border: 6px solid var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
}

.feature-box-small {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box-small:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    transform: translateX(10px);
}

.feature-icon-small {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-content-small h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.feature-content-small p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

.btn-primary-custom {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
    color: var(--white);
}

/* ================================
   FEATURES SECTION
   ================================ */

.features-detailed {
    padding: 100px 0;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--light-color);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-color);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.2);
}

.feature-card:hover .feature-icon-large {
    background: var(--gradient-accent);
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* ================================
   PROCESS SECTION
   ================================ */

.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.process-section .section-title {
    margin-bottom: 60px;
}

.process-box {
    background: var(--white);
    padding: 45px 30px 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-color);
}

.process-number {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 86, 179, 0.25);
    border: 4px solid var(--white);
    transition: all 0.3s ease;
}

.process-box:hover .process-number {
    background: var(--gradient-accent);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.35);
    transform: translateX(-50%) scale(1.1);
}

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 25px;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    border: 3px solid rgba(0, 86, 179, 0.1);
}

.process-box:hover .process-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(360deg) scale(1.05);
    border-color: transparent;
}

.process-box h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-box p {
    color: #6c757d;
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ================================
   CTA BANNER
   ================================ */

.cta-banner {
    background: var(--gradient-primary);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-fullwidth {
    background: var(--gradient-primary);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.cta-banner::before,
.cta-banner-fullwidth::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.btn-cta-white {
    background: var(--white);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid #f0f4f8;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 86, 179, 0.12);
    border-color: rgba(0, 86, 179, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #495057;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding-left: 0;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: -10px;
    top: -15px;
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f4f8;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.author-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.author-info span {
    font-size: 0.88rem;
    color: #6c757d;
    font-weight: 500;
    display: block;
}

