/* Alternative Homepage Styles - Creative Design */

/* Header */
.alt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(13, 110, 253, 0.1);
}

.navbar-modern {
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand-modern {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link-modern {
    color: #5182be;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5182be, #3d6ba3);
    transition: width 0.3s ease;
}

.nav-link-modern:hover {
    color: #5182be;
}

.nav-link-modern:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.dropdown-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-item:hover {
    background: #f8f9fa;
    color: #5182be;
    border-left-color: #5182be;
    padding-left: 1.75rem;
}

.nav-dropdown-item::after {
    display: none;
}

/* Hero Split Section */
.hero-split {
    min-height: 600px;
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    display: flex;
    align-items: center;
}

.hero-split .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: #0d6efd;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #0d6efd;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: white;
    color: #0d6efd;
    transform: translateY(-2px);
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    right: 10%;
    animation-delay: 1s;
}

.shape-5 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, -50px) rotate(180deg);
    }
    75% {
        transform: translate(30px, -20px) rotate(270deg);
    }
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5182be;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(81, 130, 190, 0.1);
    border-radius: 20px;
}

/* Section Title Alt */
.section-title-alt {
    font-size: 2.75rem;
    font-weight: 700;
    color: #5182be;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6c757d;
}

/* Why Section */
.why-section {
    background: #f8f9fa;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5182be;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Cards */
.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5182be, #3a6ba3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.quote-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-content {
    color: white;
}

.quote-mark {
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: -2rem;
}

.quote-text-alt {
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.quote-author {
    font-size: 1.125rem;
    opacity: 0.9;
}

.quote-author strong {
    font-weight: 600;
}

.quote-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.75rem;
    font-weight: 600;
    display: inline-block;
    transform: rotate(-1deg);
    letter-spacing: 0.05em;
}

/* Services Section */
.services-section {
    background: white;
    padding: 6rem 0;
}

.service-card-modern {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #0052cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    border-color: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.15);
}

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

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(13, 110, 253, 0.1);
    line-height: 1;
}

.service-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.service-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #0052cc;
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5182be;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, #0d6efd, #0052cc);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
    color: white;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-link {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0052cc;
    text-decoration: underline;
}

/* Modern Form Styles */
.contact-form-modern {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-label-modern {
    display: block;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.btn-submit-modern {
    background: linear-gradient(135deg, #0d6efd, #0052cc);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-links {
        gap: 1.5rem;
    }
    
    .nav-link-modern {
        font-size: 0.875rem;
    }
    .hero-split {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
        text-align: center;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .feature-cards {
        min-height: auto;
        position: relative;
    }
    
    .feature-card {
        position: relative;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .feature-card-2 {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title-alt {
        font-size: 2.25rem;
    }
    
    .quote-text-alt {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title-alt {
        font-size: 2rem;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
    
    .quote-text-alt {
        font-size: 1.25rem;
    }
    
    .contact-form-modern {
        padding: 2rem 1.5rem;
    }
}

