/* ===================================
   SERVICE HERO SECTION STYLES
   Fully Responsive & Optimized
   =================================== */

/* Hero Section Container */
.service-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 20px;
    background: linear-gradient(135deg, #2B4A7C 0%, #3B5A9A 50%, #4A6FB8 100%);
}

/* Background Decorative Elements */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(230, 197, 127, 0.05));
    animation: floating 8s ease-in-out infinite;
}

.floating-shape-1 {
    top: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.floating-shape-2 {
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    animation-delay: 2s;
}

.floating-shape-3 {
    top: 50%;
    left: 80%;
    width: 60px;
    height: 60px;
    animation-delay: 4s;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 0.8;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: white;
    width: 100%;
}

/* ===================================
   BREADCRUMB NAVIGATION
   =================================== */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.5;
}

.breadcrumb-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-link:hover {
    color: #E6C57F;
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E6C57F;
    transition: width 0.3s ease;
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* ===================================
   HERO TITLE
   =================================== */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #E6C57F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

/* ===================================
   HERO SUBTITLE
   =================================== */
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ===================================
   CTA BUTTONS
   =================================== */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.hero-btn i {
    font-size: 18px;
}

/* Primary Button */
.hero-btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #E6C57F 100%);
    color: #1C2951;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.hero-btn-primary:active {
    transform: translateY(-1px);
}

/* Secondary Button */
.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid #D4AF37;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #E6C57F;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.hero-btn-secondary:active {
    transform: translateY(-1px);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets and Small Laptops */
@media screen and (max-width: 1024px) {
    .service-hero {
        padding: 0 20px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem);
        margin-bottom: 32px;
    }
}

/* Tablets Portrait */
@media screen and (max-width: 768px) {
    .service-hero {
        padding: 0 16px;
        min-height: 55vh;
    }
    
    .hero-breadcrumb {
        font-size: 13px;
        gap: 6px;
        margin-bottom: 24px;
    }
    
    .breadcrumb-separator {
        font-size: 10px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 28px;
        max-width: 90%;
    }
    
    .hero-cta-group {
        gap: 12px;
    }
    
    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-btn i {
        font-size: 16px;
    }
    
    .floating-shape-1,
    .floating-shape-2,
    .floating-shape-3 {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .service-hero {
        padding: 0 16px;
        min-height: 50vh;
    }
    
    .hero-breadcrumb {
        font-size: 12px;
        gap: 4px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 4vw, 1rem);
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .floating-shape {
        display: none;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .service-hero {
        padding: 0 12px;
        min-height: 50vh;
    }
    
    .hero-breadcrumb {
        font-size: 11px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* High Resolution Displays */
@media screen and (min-width: 1920px) {
    .service-hero {
        padding: 0 40px;
        min-height: 70vh;
    }
    
    .hero-container {
        max-width: 1400px;
    }
}

/* Print Styles */
@media print {
    .service-hero {
        background: white;
        color: black;
        padding: 20px;
        min-height: auto;
    }
    
    .hero-background,
    .hero-cta-group {
        display: none;
    }
    
    .hero-title,
    .hero-subtitle,
    .breadcrumb-link,
    .breadcrumb-current {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
}
