
/* Hero Section - Beautiful & Friendly Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(41, 128, 185, 0.8) 50%, rgba(31, 78, 121, 0.8) 100%), 
                url('../assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.shape-2 {
    width: 140px;
    height: 140px;
    top: 55%;
    right: 12%;
    animation-delay: 2s;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 75%;
    left: 15%;
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.18);
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 25%;
    animation-delay: 1s;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 65%;
    right: 45%;
    animation-delay: 3s;
    background: rgba(255, 255, 255, 0.14);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(1.1);
        opacity: 1;
    }
    75% {
        transform: translateY(-15px) rotate(270deg) scale(1.05);
        opacity: 0.8;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(2) {
    left: 35%;
    animation-delay: 1.5s;
    animation-duration: 12s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(3) {
    left: 55%;
    animation-delay: 3s;
    animation-duration: 10s;
    width: 6px;
    height: 6px;
}

.particle:nth-child(4) {
    left: 75%;
    animation-delay: 4.5s;
    animation-duration: 9s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 11s;
    width: 7px;
    height: 7px;
}

.particle:nth-child(6) {
    left: 65%;
    animation-delay: 5s;
    animation-duration: 7s;
    width: 5px;
    height: 5px;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
        transform: translateY(90vh) scale(0.5) rotate(45deg);
    }
    15% {
        opacity: 1;
        transform: translateY(80vh) scale(1) rotate(90deg);
    }
    85% {
        opacity: 1;
        transform: translateY(20vh) scale(1) rotate(270deg);
    }
    95% {
        opacity: 0.6;
        transform: translateY(10vh) scale(0.8) rotate(315deg);
    }
    100% {
        transform: translateY(-50px) scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Container */
.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;

}

/* Hero Main Content */
.hero-main {
    animation: slideInLeft 1.2s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line-1 {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-line-2 {
    display: block;
    background: rgba(255, 255, 255, 0.9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.title-accent {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    color: white;
    padding: 0;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    min-width: 280px;
    height: 80px;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B0E0E6, #5F9EA0);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-primary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(135, 206, 235, 0.6);
    color: white;
    text-decoration: none;
}

.btn-hero-primary:active {
    transform: translateY(-4px) scale(1.01);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-hero-primary:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.btn-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-hero-primary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 0;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    height: 80px;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary:active {
    transform: translateY(-4px) scale(1.01);
}

.btn-hero-secondary .btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.btn-hero-secondary .btn-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-hero-secondary:hover .btn-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary .btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: left;
}

.btn-hero-secondary .btn-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-hero-secondary .btn-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-hero-secondary:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 1.2s ease-out;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    animation: elementFloat 5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.element-1 {
    top: 8%;
    left: 18%;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.3);
}

.element-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1.5s;
    background: rgba(255, 255, 255, 0.2);
}

.element-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
    background: rgba(255, 255, 255, 0.28);
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-12px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.2);
    }
    75% {
        transform: translateY(-12px) rotate(270deg) scale(1.1);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 1.7s both;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .main-card {
        width: 250px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 2.2rem;
    }
    
    .title-accent {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 100%;
        max-width: 350px;
        height: 70px;
    }
    
    .btn-content {
        padding: 1.2rem 1.5rem;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .btn-title {
        font-size: 1.1rem;
    }
    
    .btn-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.2rem 1.5rem;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .floating-element {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line-2 {
        font-size: 1.8rem;
    }
    
    .title-accent {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .main-card {
        width: 200px;
        height: 140px;
        padding: 1rem;
    }
    
    .card-header {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .card-info h3 {
        font-size: 1rem;
    }
    
    .card-info p {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .feature-card {
        width: 80px;
        height: 60px;
        font-size: 0.6rem;
    }
    
    .floating-element {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        min-width: 100%;
        height: 65px;
    }
    
    .btn-content {
        padding: 1rem 1.2rem;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .btn-title {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero .tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero .description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-style: preserve-3d;
}

.btn-primary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.btn-primary-hero:hover {
    transform: translateY(-8px) rotateX(10deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.4);
    color: #1a252f;
}

.btn-primary-hero:hover::before {
    left: 100%;
}

.btn-primary-hero:active {
    transform: translateY(-4px) rotateX(5deg);
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    padding: 20px 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.btn-secondary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    transform: translateY(-8px) rotateX(10deg);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.btn-secondary-hero:hover::before {
    transform: scaleX(1);
}

.btn-secondary-hero:active {
    transform: translateY(-4px) rotateX(5deg);
}

.hero-visual-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.hero-visual-content:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.5);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(52, 152, 219, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3498db, #2980b9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) rotateX(10deg);
    box-shadow: 
        0 20px 50px rgba(52, 152, 219, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #3498db;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(52, 152, 219, 0.2);
}

.stat-item:hover .stat-number {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.95);
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    font-size: 1.05rem;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero-features li:last-child {
    border-bottom: none;
}

.hero-features li:hover {
    color: #3498db;
    transform: translateX(10px);
}

.hero-features li i {
    color: #3498db;
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-features li:hover i {
    color: #2980b9;
    transform: scale(1.2);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    opacity: 0.15;
    animation: float3D 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: 2.5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 5s;
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg) rotateX(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-30px) rotateY(90deg) rotateX(15deg);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-20px) rotateY(180deg) rotateX(0deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-35px) rotateY(270deg) rotateX(-15deg);
        opacity: 0.2;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: white;
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: 
        0 15px 50px rgba(52, 152, 219, 0.12),
        0 0 0 1px rgba(52, 152, 219, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.08);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content .excerpt {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-content .full-content {
    color: #7f8c8d;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.service-item.active .full-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(52, 152, 219, 0.05) 10px,
        rgba(52, 152, 219, 0.05) 20px
    );
    animation: float 20s linear infinite;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #3498db;
}

.about-text .excerpt {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.about-text .full-content {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.about .read-more-btn {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 15px 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.about .read-more-btn:hover {
    background: #3498db;
    color: white;
    transform: translateX(5px);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(41, 128, 185, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Social Media Section */
.social-media-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.w3-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-media-box {
    background: white;
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1) !important;
    padding: 1.5rem;
    border: 2px solid rgba(52, 152, 219, 0.1) !important;
    transition: all 0.3s ease;
}

.social-media-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2) !important;
    border-color: rgba(52, 152, 219, 0.3) !important;
}

.social-media-box iframe {
    border-radius: 10px;
    width: 100% !important;
    height: 400px !important;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.contact-form h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-form p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn:hover {
    background: linear-gradient(135deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.contact-form a {
    display: inline-block;
    margin-top: 1.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-form a:hover {
    color: #2980b9;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-container {
        position: static;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 2.5rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-visual-content {
        padding: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .gallery {
        padding: 60px 0;
    }
    
    .services h2,
    .section-header h2,
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 2rem;
        max-width: 600px;
    }
    
    .service-item {
        padding: 2.5rem;
        min-height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .w3-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-media-box iframe {
        height: 350px !important;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-form h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-text .logo {
        max-width: 200px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-visual-content {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .btn {
        width: 100%;
        margin-right: 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Print Styles */
@media print {
    .hero,
    .social-media-section,
    .contact {
        display: none;
    }
    
    .services,
    .about,
    .gallery {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}


