/* Common Hero Section Styles */
/* This file contains reusable hero section styles that can be used across all pages */

/* Base Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #0D225C, #1a3a7a);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><g fill="%23ffffff"><circle cx="30" cy="30" r="2"/></g></svg>');
}

/* Hero Icon Styles */
.hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(163, 145, 99, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.hero-icon i {
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid transparent;
    border-top-color: #a39163;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

/* Hero Title Styles */
.hero-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.hero-title span {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #a39163, #0D225C);
    border-radius: 2px;
}

/* Hero Description Styles */
.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Hero Badges Styles */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-item {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.badge-item i {
    color: #a39163;
    margin-right: 8px;
}

/* Hero Visual Card Styles */
.hero-visual {
    position: relative;
}

.hero-main-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-main-card .icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a39163, #8b7a63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.hero-main-card .icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.hero-main-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.hero-main-card p {
    color: rgba(255,255,255,0.8);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Hero Section Hover Effects */
.hero-icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

.hero-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.25);
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

@keyframes slideInLeft {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(13, 34, 92, 0.3); }
    50% { box-shadow: 0 0 40px rgba(13, 34, 92, 0.6); }
}

/* Common Section Styles */
.section-fade-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-fade-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Common Content Divider */
.content-divider {
    position: relative;
    overflow: hidden;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a39163, #0D225C);
    border-radius: 2px;
    margin: 15px auto;
}

.content-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmer-divider 2s infinite;
}

@keyframes shimmer-divider {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .badge-item {
        margin: 5px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-main-card {
        padding: 30px;
    }
    
    .hero-main-card .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .hero-main-card .icon-circle i {
        font-size: 2rem;
    }
    
    .hero-main-card h3 {
        font-size: 1.3rem;
    }
}

/* Common Card Styles */
.common-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.common-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Common Icon Box Styles */
.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0D225C, #1a3a7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.icon-box i {
    color: white;
    font-size: 1.3rem;
}

/* Common Button Styles */
.btn-primary-theme {
    background: linear-gradient(135deg, #a39163, #8b7a63);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(163, 145, 99, 0.3);
}

.btn-secondary-theme {
    background: #f8f9fa;
    color: #0D225C;
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid #e9ecef;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary-theme:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #a39163;
}

/* Common Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: #0D225C;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Common Grid Layouts */
.grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.grid-3-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.grid-4-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Common Background Colors */
.bg-light-theme {
    background: #F0F0EA;
}

.bg-white {
    background: white;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #0D225C, #1a3a7a);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #a39163, #8b7a63);
}

/* Common Text Colors */
.text-primary {
    color: #0D225C;
}

.text-secondary {
    color: #a39163;
}

.text-muted {
    color: #666;
}

.text-white {
    color: white;
}

/* Common Spacing */
.py-section {
    padding: 60px 0;
}

.py-large {
    padding: 80px 0;
}

.py-small {
    padding: 40px 0;
}

.mb-section {
    margin-bottom: 60px;
}

.mb-large {
    margin-bottom: 80px;
}

.mb-small {
    margin-bottom: 40px;
}
