/* Root Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B801;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #F7B801 100%);
    --gradient-2: linear-gradient(135deg, #004E89 0%, #1A1A2E 100%);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar-scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 1);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.brand-subtitle {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent-color);
    font-weight: 300;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('images/banner.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.85) 0%, rgba(0, 78, 137, 0.85) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247, 184, 1, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons .btn {
    margin: 10px;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: #ff5520;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 32px;
    color: white;
}

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

/* Stats Section */
.stats-section {
    background: white;
    padding: 80px 0;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin: 10px;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Zigzag Features Section */
.features-zigzag {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.features-zigzag::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-row {
    margin-bottom: 100px;
}

.feature-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(0, 78, 137, 0.2) 100%);
    transition: opacity 0.3s ease;
}

.feature-image:hover::before {
    opacity: 0.5;
}

.feature-content {
    padding: 40px;
}

.feature-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.feature-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.feature-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: var(--gradient-2);
    transform: skewY(-3deg);
    transform-origin: top left;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.pricing-header {
    background: var(--gradient-1);
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.pricing-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 48px;
}

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 20px;
}

.currency {
    font-size: 32px;
    margin-top: 10px;
    margin-right: 5px;
}

.price {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.period {
    font-size: 18px;
    margin-top: 30px;
    margin-left: 5px;
    opacity: 0.9;
}

.pricing-body {
    padding: 50px 40px;
}

.pricing-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 18px;
}

.pricing-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.pricing-footer {
    padding: 0 40px 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 184, 1, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 80px;
    color: var(--primary-color);
    position: absolute;
    top: -30px;
    left: -20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-author h5 {
    margin: 0;
    font-size: 18px;
    color: var(--dark-color);
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -80px;
}

.carousel-control-next {
    right: -80px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: url('images/cta.jpg') center/cover;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(247, 184, 1, 0.9) 100%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 18px 50px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: var(--light-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .feature-content h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
    
    .stat-card {
        margin-bottom: 20px;
    }
    
    .feature-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}

/* About Page Styles */
.page-header {
    padding: 180px 0 100px;
    background: url('images/about.jpg') center/cover;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.9;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
}

.page-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--dark-color);
    font-weight: 800;
}

.about-story p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.rounded-custom {
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.mission-values {
    padding: 100px 0;
    background: #f8f9fa;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: white;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.team-section {
    padding: 100px 0;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.team-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.why-choose {
    padding: 100px 0;
    background: white;
}

.why-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    line-height: 1.7;
}

.why-list i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 20px;
}

/* Contact Page Styles */
.contact-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-control {
    padding: 15px 20px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
}

textarea.form-control {
    min-height: 150px;
}

.contact-info-card {
    background: var(--gradient-2);
    color: white;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
}

.contact-info-card h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
}

.contact-info-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.map-wrapper {
    margin-top: 80px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* Policy Pages Styles */
.policy-content {
    padding: 100px 0;
}

.policy-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.policy-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.policy-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.policy-content p,
.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content .last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.policy-sidebar {
    position: sticky;
    top: 100px;
}

.policy-nav {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.policy-nav h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.policy-nav ul {
    list-style: none;
    padding: 0;
}

.policy-nav li {
    margin-bottom: 12px;
}

.policy-nav a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.policy-nav a:hover {
    color: var(--primary-color);
}

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}