.navbar {
    background: #2c5282;
}

.navbar-item {
    color: white;
}

.navbar-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.navbar-burger {
    color: white;
}

.navbar-burger span {
    background-color: white;
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: #1a202c;
    }
}

.hero {
    background: linear-gradient(135deg, #2c5282 0%, #1e3a8a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-modern {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 50%, #4299e1 100%);
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 3;
    animation: pattern-float 20s infinite linear;
}

.hero-body {
    position: relative;
    z-index: 4;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badge-glow 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

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

.hero-cta-primary {
    background: #ffd700;
    color: #1e3a8a;
    border: none;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    color: #1e3a8a;
}

.hero-cta-primary:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.hero-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-image-container {
    position: relative;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-frame {
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 4px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    background-size: 400% 400%;
    animation: frame-glow 3s ease-in-out infinite;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hero-image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-image-container:hover .hero-image-overlay {
    transform: translateY(0);
    opacity: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.badge-text {
    text-align: left;
}

.badge-title {
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.9rem;
}

.badge-subtitle {
    font-size: 0.8rem;
    color: #718096;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: scroll-fade 2s ease-in-out infinite;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: white;
}

.scroll-down span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes pattern-float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

@keyframes frame-glow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes scroll-fade {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes arrow-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(-45deg) translate(0, 0);
    }
    40% {
        transform: rotate(-45deg) translate(0, -4px);
    }
    60% {
        transform: rotate(-45deg) translate(0, -2px);
    }
}

@keyframes animate-slide-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animate-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-slide-in {
    animation: animate-slide-in 0.8s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: animate-float 3s ease-in-out infinite;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .hero-scroll-indicator {
        bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Inner hero section styles */
.hero-inner {
    min-height: 40vh;
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 50%, #4299e1 100%);
    color: white;
}

.hero-inner .hero-body {
    min-height: 40vh;
}

.hero-inner .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-inner .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-inner .hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-inner .stat-item {
    text-align: center;
}

.hero-inner .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
}

.hero-inner .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.hero-inner .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-inner .hero-cta-primary {
    background: #ffd700;
    color: #1e3a8a;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-inner .hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero-inner .hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    color: #1e3a8a;
}

.hero-inner .hero-cta-primary:hover::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.hero-inner .hero-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-inner .hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Responsive design for inner hero sections */
@media screen and (max-width: 768px) {
    .hero-inner .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-inner .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-inner .hero-stats {
        gap: 1rem;
    }
    
    .hero-inner .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-inner .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-inner .hero-cta-primary,
    .hero-inner .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .hero-inner .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-inner .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-inner .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-inner .stat-number {
        font-size: 1.3rem;
    }
}

.btn-primary {
    background: #e53e3e;
    border: none;
    color: white;
}

.btn-primary:hover {
    background: #c53030;
    color: white;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    z-index: 1000;
    display: block;
}

.cookie-banner-title {
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 10px;
}

.cookie-banner-text {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 14px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: #38a169;
    color: white;
}

.cookie-btn.decline {
    background: #e53e3e;
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-options {
    margin: 15px 0;
    font-size: 12px;
}

.cookie-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option input {
    margin-right: 8px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.section-padding {
    padding: 60px 0;
}

.contact-section {
    background: #f7fafc;
}

.pricing-tag {
    background: #e53e3e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

.gallery-image {
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: bold;
    color: #2c5282;
}

.team-member {
    text-align: center;
    padding: 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #e2e8f0;
}

.team-name {
    font-weight: bold;
    color: #2c5282;
    margin-bottom: 5px;
}

.team-role {
    color: #718096;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .cookie-consent-banner {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .hero .title {
        font-size: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 82, 130, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.footer-bg {
    background: #1a202c;
    color: white;
    padding: 40px 0 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section strong {
    color: inherit;
}

.footer-link {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
    color: #718096;
}

.form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2d3748;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

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

.form-submit {
    background: #2c5282;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s ease;
}

.form-submit:hover {
    background: #1e3a8a;
}

.text-dark {
    color: #2d3748 !important;
}

.text-muted {
    color: #718096 !important;
}

.bg-light {
    background-color: #f7fafc !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
    color: inherit;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    cursor: pointer;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-question:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.faq-question.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    display: block;
    padding: 0;
    margin-bottom: 1rem;
}

.faq-answer[style*="display: block"] {
    opacity: 1;
    display: block;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-icon {
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: auto;
    color: #2c5282;
}