/* Additional Legal Pages Enhancements */
.policy-summary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.policy-summary h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.policy-summary li {
    padding: 0.5rem 0;
    font-weight: 500;
}

.cookie-settings {
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings .btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-settings .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(48, 153, 117, 0.3);
}

/* Accessibility Enhancements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
    color: var(--white);
}
.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}
/* Focus indicators for better accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .legal-content {
        border: 2px solid var(--primary-color);
    }
    
    .legal-content h1,
    .legal-content h2,
    .legal-content h3 {
        border-bottom: 1px solid var(--primary-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-elements,
    .animated-waves,
    .floating-fish,
    .floating-bubble {
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .floating-elements {
        display: none !important;
    }
    
    .legal-page-section {
        padding-top: 0 !important;
    }
    
    .legal-content {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .legal-content a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    .contact-info {
        border: 1px solid #000 !important;
        background: #f5f5f5 !important;
    }
}/* Ciire - Custom Styles */

/* CSS Variables - Color Palette */
:root {
    --primary-color: #454d66;
    --secondary-color: #309975;
    --accent-color: #58b368;
    --highlight-color: #dad873;
    --light-color: #efeeb4;
    --white: #ffffff;
    --dark: #2c3e50;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
    
    /* Typography */
    --font-primary: 'Noto Serif', serif;
    --font-secondary: 'Nova Slim', sans-serif;
    --font-tertiary: 'Imprima', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

body {
    font-family: var(--font-tertiary);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-family: var(--font-tertiary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.cookie-banner a {
    color: var(--highlight-color);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-family: var(--font-tertiary);
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

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

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 77, 102, 0.8), rgba(48, 153, 117, 0.6));
    z-index: -1;
}

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

.hero-title {
    font-size: 4rem;
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-tertiary);
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(48, 153, 117, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Wave Decoration */
.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.wave-decoration svg {
    width: 100%;
    height: 100%;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
    position: relative;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(48, 153, 117, 0.1);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

/* Yates Section */
.yates-section {
    background: var(--white);
    position: relative;
}

.yacht-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

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

.yacht-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.yacht-card:hover .yacht-image {
    transform: scale(1.05);
}

.yacht-info {
    padding: 1.5rem;
}

.yacht-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.yacht-price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Featured Service Section */
.featured-service-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.service-content {
    padding: 2rem 0;
}

.service-title {
    color: var(--white);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-highlight {
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight-color);
    display: block;
    margin: 1.5rem 0;
}

/* Video Section */
.video-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(69, 77, 102, 0.7);
    z-index: -1;
}

.video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.video-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.video-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Animated Waves */
.animated-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(239, 238, 180, 0.3), transparent);
    animation: wave-animation 4s ease-in-out infinite;
}

.wave1 {
    animation-delay: 0s;
}

.wave2 {
    animation-delay: -1.5s;
}

.wave3 {
    animation-delay: -3s;
}

@keyframes wave-animation {
    0%, 100% {
        transform: translateX(-50%);
    }
    50% {
        transform: translateX(-25%);
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

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

.testimonial-stars {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Marine Inspiration Section */
.marine-inspiration-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

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

.floating-fish,
.floating-bubble {
    position: absolute;
    opacity: 0.6;
}

.floating-fish {
    width: 40px;
    height: 20px;
    background: var(--light-color);
    border-radius: 50% 10px 50% 10px;
    animation: float 6s ease-in-out infinite;
}

.fish1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.fish2 {
    top: 60%;
    left: 80%;
    animation-delay: -2s;
}

.fish3 {
    top: 40%;
    left: 60%;
    animation-delay: -4s;
}

.floating-bubble {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bubble 4s ease-in-out infinite;
}

.bubble1 {
    top: 80%;
    left: 20%;
    animation-delay: 0s;
}

.bubble2 {
    top: 70%;
    left: 70%;
    animation-delay: -1s;
}

.bubble3 {
    top: 90%;
    left: 50%;
    animation-delay: -2s;
}

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

@keyframes bubble {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50px) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid rgba(48, 153, 117, 0.2);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-color);
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: var(--dark);
}

/* Blog Section */
.blog-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.blog-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
}

.contact-form .form-control {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1rem;
    font-size: 1rem;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    border-color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(218, 216, 115, 0.25);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer-title {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.footer-text {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-heading {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--highlight-color);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    opacity: 0.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 200px;
    }
    
    .feature-card,
    .yacht-card,
    .testimonial-card,
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .price-highlight {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hero-section {
        height: 80vh;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(69, 77, 102, 0.8), rgba(48, 153, 117, 0.6));
    z-index: -1;
}

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

.page-hero .hero-title {
    font-size: 3.5rem;
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-family: var(--font-tertiary);
}

/* Company Story Section */
.company-story-section {
    background: var(--white);
}

.company-stats {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-color), rgba(239, 238, 180, 0.3));
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Mission Vision Values Section */
.mvv-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(48, 153, 117, 0.1);
}

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

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-bio {
    color: var(--gray);
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Promise Section */
.promise-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.promise-points {
    margin-top: 2rem;
}

.promise-point {
    text-align: center;
    padding: 1rem;
}

.promise-point i {
    font-size: 3rem;
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.promise-point h5 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.promise-point p {
    opacity: 0.9;
    font-size: 0.9rem;
}

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

.floating-anchor,
.floating-compass {
    position: absolute;
    opacity: 0.1;
    font-size: 4rem;
    color: var(--white);
}

.floating-anchor::before {
    content: '⚓';
}

.floating-compass::before {
    content: '🧭';
}

.anchor1 {
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.anchor2 {
    bottom: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.compass1 {
    top: 60%;
    left: 80%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Offices Section */
.offices-section {
    background: var(--white);
}

.office-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

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

.office-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.office-card:hover .office-image {
    transform: scale(1.05);
}

.office-info {
    padding: 1.5rem;
}

.office-info h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.office-address {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.office-address i {
    margin-right: 0.5rem;
}

.office-description {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Styles */
.contact-info-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(48, 153, 117, 0.1);
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--accent-color);
}

.contact-description {
    color: var(--gray);
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(48, 153, 117, 0.1);
}

.contact-form .form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(48, 153, 117, 0.25);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid {
    border-color: var(--accent-color);
}

.contact-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form .form-check-input {
    border: 2px solid #e9ecef;
    border-radius: 4px;
}

.contact-form .form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-form .form-check-label a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.map-container {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

/* Quick Contact Section */
.quick-contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.quick-contact-wrapper {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-contact-wrapper h3 {
    font-family: var(--font-primary);
}

.quick-contact-wrapper .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.quick-contact-wrapper .btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.quick-contact-wrapper .btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.quick-contact-wrapper .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact FAQ Section */
.contact-faq-section {
    background: var(--white);
}

/* Form Validation Styles */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: var(--accent-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2358b368' d='m2.3 6.73.7-.7L1.6 4.6.9 5.3z'/%3e%3cpath fill='%2358b368' d='m6.4 1-.7.7L3.9 3.5l-.7-.7-.7.7.7.7 2.1 2.1.7-.7z'/%3e%3c/svg%3e");
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 5.8 4.4 4.4M8.8 5.8l-4.4 4.4'/%3e%3c/svg%3e");
}

/* Success Message Styles */
.alert-success {
    background-color: rgba(88, 179, 104, 0.1);
    border-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 10px;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Legal Pages Styles */
.legal-page-section {
    padding: 120px 0 80px;
    background: var(--white);
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(48, 153, 117, 0.1);
}

.legal-content h1 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.legal-content .last-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.legal-content h2 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 1rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content ul, 
.legal-content ol {
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-content .contact-info {
    background: linear-gradient(135deg, var(--light-color), rgba(239, 238, 180, 0.3));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.legal-content .contact-info p {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Table Styles for Legal Pages */
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content table th {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.legal-content table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-content table tr:nth-child(even) {
    background: var(--light-color);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page-section {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.3rem;
    }
    
    .legal-content p,
    .legal-content ul,
    .legal-content ol {
        text-align: left;
    }
    .hero-content{
        padding-top: 120px!important;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-content table {
        font-size: 0.9rem;
    }
    
    .legal-content table th,
    .legal-content table td {
        padding: 0.5rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cookie-banner,
    .floating-elements {
        display: none !important;
    }
    
    .legal-page-section {
        padding-top: 0 !important;
    }
    
    .legal-content {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
    
    .legal-content a {
        color: #000 !important;
        text-decoration: underline !important;
    }
    
    .contact-info {
        border: 1px solid #000 !important;
        background: #f5f5f5 !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}