/* StariosOpt Charter - Unique Maritime Design */
:root {
    --ocean-blue: #0077be;
    --turquoise: #40e0d0;
    --deep-sea: #003d5c;
    --foam-white: #f8fdff;
    --coral: #ff6b6b;
    --sunset-gold: #ffd700;
    --wave-gradient: linear-gradient(135deg, var(--ocean-blue), var(--turquoise));
    --shadow-soft: 0 10px 40px rgba(0, 119, 190, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 119, 190, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--deep-sea);
    overflow-x: hidden;
    background: var(--foam-white);
}

/* Unique Navigation with Floating Effect */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(248, 253, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 10px 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}

.navbar:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--ocean-blue);
}

.logo-icon {
    width: 35px;
    height: 35px;
    color: var(--ocean-blue);
    animation: float 3s ease-in-out infinite;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--deep-sea);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--ocean-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wave-gradient);
    transition: width 0.3s ease;
}

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--ocean-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section with Floating Elements */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    overflow: hidden;
}

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

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: floatRandom 6s ease-in-out infinite;
}

.wave-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(64, 224, 208, 0.1), rgba(0, 119, 190, 0.1));
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.wave-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 107, 0.1));
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.bubble-1, .bubble-2, .bubble-3 {
    background: rgba(64, 224, 208, 0.2);
    animation: bubble 4s ease-in-out infinite;
}

.bubble-1 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 20%;
    animation-delay: 1s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 30%;
    animation-delay: 3s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 15%;
    animation-delay: 5s;
}

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

@keyframes bubble {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
}

.highlight {
    background: var(--wave-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--deep-sea);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Unique Button Styles */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--wave-gradient);
    color: white;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.btn-secondary:hover {
    background: var(--ocean-blue);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--turquoise);
}

.btn-outline:hover {
    background: var(--turquoise);
    color: white;
    transform: translateY(-3px);
}

/* Hero Visual with Stacked Images */
.hero-visual {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform: rotate(-5deg);
    box-shadow: var(--shadow-strong);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 119, 190, 0.2), rgba(64, 224, 208, 0.2));
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transform: rotate(5deg);
}

.stat-item {
    text-align: center;
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ocean-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--deep-sea);
}

/* Experience Section with Asymmetric Layout */
.experience-section {
    padding: 120px 0;
    background: white;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-sea);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--deep-sea);
    margin-bottom: 50px;
    line-height: 1.8;
}

.experience-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(64, 224, 208, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 2rem;
    min-width: 60px;
}

.feature-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--deep-sea);
    opacity: 0.8;
}

/* Visual Stack */
.visual-stack {
    position: relative;
}

.stack-image {
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stack-image.main {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.stack-image.floating {
    position: absolute;
    width: 200px;
    height: 150px;
    top: -30px;
    right: -30px;
    object-fit: cover;
    border: 5px solid white;
    animation: float 4s ease-in-out infinite;
}

.visual-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--wave-gradient);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Services Showcase */
.services-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.05) 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--deep-sea);
    opacity: 0.8;
    margin-top: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-strong);
}

.service-card.sunset:hover {
    transform: translateY(-10px) rotate(-2deg);
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 61, 92, 0.9));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.service-card:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Footer with Wave Animation */
.footer {
    background: var(--deep-sea);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 0 30px;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: var(--wave-gradient);
    border-radius: 0 0 50% 50%;
    animation: wave 6s ease-in-out infinite;
}

.wave1 { animation-delay: 0s; opacity: 0.7; }
.wave2 { animation-delay: 2s; opacity: 0.5; }
.wave3 { animation-delay: 4s; opacity: 0.3; }

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--turquoise);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--turquoise);
    transform: translateX(5px);
}

.contact-info p, .schedule p {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-sea);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content a {
    color: var(--turquoise);
}

.cookie-accept {
    background: var(--turquoise);
    color: var(--deep-sea);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    background: white;
    transform: translateY(-2px);
}

/* Fleet Page Specific Styles */
.fleet-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.fleet-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--deep-sea);
    margin-bottom: 50px;
    line-height: 1.8;
}

.fleet-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* Fleet Categories */
.fleet-categories {
    padding: 120px 0;
    background: white;
}

.categories-header {
    text-align: center;
    margin-bottom: 80px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.category-card.luxury:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.02);
}

.category-card.catamaran:hover {
    transform: translateY(-10px) rotate(-1deg) scale(1.02);
}

.category-card.traditional:hover {
    transform: translateY(-10px) rotate(1deg) scale(1.02);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 61, 92, 0.8), rgba(0, 119, 190, 0.6));
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-overlay p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.category-features li {
    padding: 5px 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

.category-features li:before {
    content: "✓ ";
    color: var(--turquoise);
    font-weight: bold;
}

/* Featured Boats */
.featured-boats {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.05) 100%);
}

.boats-showcase {
    margin-top: 80px;
}

.boat-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.boat-feature.right-align {
    grid-template-columns: 1fr 1fr;
}

.boat-feature.right-align .boat-content {
    order: 2;
}

.boat-feature.right-align .boat-visual {
    order: 1;
}

.boat-badge {
    display: inline-block;
    background: var(--wave-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.boat-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-sea);
    margin-bottom: 10px;
}

.boat-type {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.boat-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-sea);
    margin-bottom: 40px;
}

.boat-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(64, 224, 208, 0.1);
    transform: translateX(5px);
}

.spec-icon {
    font-size: 1.2rem;
}

.spec-text {
    font-weight: 500;
    color: var(--deep-sea);
}

.boat-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.boat-image-stack {
    position: relative;
}

.main-boat-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.boat-feature:hover .main-boat-image {
    transform: scale(1.02);
}

.image-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

.luxury-decoration {
    background: linear-gradient(45deg, var(--sunset-gold), var(--coral));
    top: -20px;
    right: -20px;
}

.catamaran-decoration {
    background: linear-gradient(45deg, var(--turquoise), var(--ocean-blue));
    bottom: -20px;
    left: -20px;
}

.traditional-decoration {
    background: linear-gradient(45deg, var(--coral), var(--sunset-gold));
    top: -20px;
    right: -20px;
}

/* Fleet Services */
.fleet-services {
    padding: 120px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(64, 224, 208, 0.02);
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(64, 224, 208, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.service-item p {
    color: var(--deep-sea);
    opacity: 0.8;
    line-height: 1.6;
}

/* Fleet CTA */
.fleet-cta {
    padding: 100px 0;
    background: var(--wave-gradient);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.fleet-cta .btn-primary {
    background: white;
    color: var(--ocean-blue);
}

.fleet-cta .btn-primary:hover {
    background: var(--foam-white);
    transform: translateY(-3px);
}

.fleet-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.fleet-cta .btn-secondary:hover {
    background: white;
    color: var(--ocean-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 25px;
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
        box-shadow: var(--shadow-soft);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Fleet Page Mobile Styles */
    .page-title {
        font-size: 2.5rem;
    }
    
    .fleet-stats {
        gap: 20px;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .boat-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .boat-feature.right-align .boat-content,
    .boat-feature.right-align .boat-visual {
        order: unset;
    }
    
    .boat-name {
        font-size: 2rem;
    }
    
    .boat-specs {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Tours/Passeios Page Styles */
.tours-hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.tours-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tours-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--deep-sea);
}

/* Featured Tours */
.featured-tours {
    padding: 120px 0;
    background: white;
}

.tour-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.tour-showcase.right-align .tour-content {
    order: 2;
}

.tour-showcase.right-align .tour-visual {
    order: 1;
}

.tour-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-badge.premium {
    background: linear-gradient(45deg, var(--sunset-gold), var(--coral));
    color: white;
}

.tour-badge.adventure {
    background: linear-gradient(45deg, var(--ocean-blue), var(--turquoise));
    color: white;
}

.tour-badge.exclusive {
    background: linear-gradient(45deg, var(--coral), var(--sunset-gold));
    color: white;
}

.tour-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--deep-sea);
    margin-bottom: 10px;
    line-height: 1.2;
}

.tour-duration {
    color: var(--ocean-blue);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1rem;
}

.tour-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-sea);
    margin-bottom: 40px;
}

.tour-features {
    margin-bottom: 40px;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(64, 224, 208, 0.03);
    border-radius: 12px;
    border-left: 3px solid var(--turquoise);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(64, 224, 208, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.feature-text strong {
    display: block;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--deep-sea);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

.tour-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05), rgba(64, 224, 208, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.price-label {
    font-size: 0.9rem;
    color: var(--deep-sea);
    opacity: 0.7;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ocean-blue);
}

.price-unit {
    font-size: 0.9rem;
    color: var(--deep-sea);
    opacity: 0.7;
}

.tour-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tour-image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.tour-image-container:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.tour-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-image-container:hover .tour-main-image {
    transform: scale(1.05);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.sunset-overlay {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.3), rgba(255, 107, 107, 0.3));
}

.cave-overlay {
    background: linear-gradient(45deg, rgba(0, 119, 190, 0.3), rgba(64, 224, 208, 0.3));
}

.island-overlay {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(255, 215, 0, 0.3));
}

.tour-image-container:hover .tour-overlay {
    opacity: 0.1;
}

.tour-badge-floating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--deep-sea);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

/* Services Grid Section */
.services-grid-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.05) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--wave-gradient);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--deep-sea);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 8px 0;
    color: var(--deep-sea);
    opacity: 0.7;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: bold;
}

/* Booking Process */
.booking-process {
    padding: 120px 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--wave-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.step-content p {
    color: var(--deep-sea);
    opacity: 0.8;
    line-height: 1.6;
}

/* Tours CTA */
.tours-cta {
    padding: 100px 0;
    background: var(--wave-gradient);
    color: white;
    text-align: center;
}

.tours-cta .cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tours-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.tours-cta .btn-primary {
    background: white;
    color: var(--ocean-blue);
}

.tours-cta .btn-primary:hover {
    background: var(--foam-white);
    transform: translateY(-3px);
}

.tours-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.tours-cta .btn-secondary:hover {
    background: white;
    color: var(--ocean-blue);
}

/* Tours Page Mobile Styles */
@media (max-width: 768px) {
    .tours-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 10px 20px;
    }
    
    .tour-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .tour-showcase.right-align .tour-content,
    .tour-showcase.right-align .tour-visual {
        order: unset;
    }
    
    .tour-name {
        font-size: 1.8rem;
    }
    
    .tour-main-image {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tours-cta .cta-content h2 {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 120px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-container {
    background: rgba(64, 224, 208, 0.02);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.form-description {
    color: var(--deep-sea);
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(64, 224, 208, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.1);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(64, 224, 208, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--turquoise);
    border-color: var(--turquoise);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--ocean-blue);
    text-decoration: underline;
}

.btn-submit {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--deep-sea);
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-card a {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--deep-sea);
    opacity: 0.6;
    font-style: italic;
}

/* Map Section */
.map-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.05) 100%);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.map-placeholder {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    padding: 40px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.map-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.map-content p {
    color: var(--deep-sea);
    opacity: 0.8;
    margin-bottom: 10px;
}

.location-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.location-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(64, 224, 208, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(64, 224, 208, 0.05);
    transform: translateX(5px);
}

.info-icon {
    font-size: 1.3rem;
    min-width: 25px;
}

.info-text strong {
    display: block;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 5px;
}

.info-text p {
    color: var(--deep-sea);
    opacity: 0.8;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Quick */
.faq-quick {
    padding: 120px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: rgba(64, 224, 208, 0.02);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(64, 224, 208, 0.05);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--deep-sea);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta p {
    color: var(--deep-sea);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Emergency Contact */
.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--coral), var(--sunset-gold));
    color: white;
    text-align: center;
}

.emergency-content {
    max-width: 600px;
    margin: 0 auto;
}

.emergency-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.emergency-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-contact .btn-primary {
    background: white;
    color: var(--coral);
    font-size: 1.2rem;
    padding: 18px 40px;
}

.emergency-contact .btn-primary:hover {
    background: var(--foam-white);
    transform: translateY(-3px);
}

.emergency-note {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-info {
        padding: 25px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .emergency-content h2 {
        font-size: 1.5rem;
    }
}

/* FAQ Page Styles */
.faq-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.faq-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.faq-search {
    display: flex;
    max-width: 500px;
    margin: 40px auto 0;
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.2);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    padding: 15px 20px;
    background: var(--wave-gradient);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--ocean-blue);
}

/* FAQ Categories */
.faq-categories {
    padding: 60px 0 0;
    background: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid rgba(64, 224, 208, 0.2);
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--deep-sea);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--wave-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* FAQ Content */
.faq-content {
    padding: 80px 0 120px;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid rgba(64, 224, 208, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(64, 224, 208, 0.02);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(64, 224, 208, 0.05);
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--ocean-blue);
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 1000px;
}

.faq-item.active .faq-question {
    background: rgba(64, 224, 208, 0.08);
    border-bottom: 1px solid rgba(64, 224, 208, 0.1);
}

.faq-answer p {
    color: var(--deep-sea);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: var(--deep-sea);
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--ocean-blue);
    font-weight: 600;
}

/* FAQ Contact Section */
.faq-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.05) 100%);
    text-align: center;
}

.faq-contact-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-sea);
    margin-bottom: 20px;
}

.faq-contact-content p {
    font-size: 1.2rem;
    color: var(--deep-sea);
    opacity: 0.8;
    margin-bottom: 50px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--deep-sea);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    color: var(--deep-sea);
}

.contact-option .contact-icon {
    font-size: 2rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-text strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text span {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-search {
        margin: 30px 20px 0;
    }
    
    .category-tabs {
        gap: 8px;
        padding: 0 20px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .contact-option {
        min-width: 280px;
        justify-content: center;
    }
    
    .faq-contact-content h2 {
        font-size: 2rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-content {
    padding: 120px 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Main Blog Content */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.featured-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

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

.featured-article .article-image {
    height: 400px;
}

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

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--wave-gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-article .article-content {
    padding: 40px;
}

.featured-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.featured-article h2 a {
    color: var(--deep-sea);
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-article h2 a:hover {
    color: var(--ocean-blue);
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--deep-sea);
    opacity: 0.7;
    flex-wrap: wrap;
}

.article-excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--deep-sea);
    margin-bottom: 25px;
}

.read-more {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--turquoise);
    text-decoration: underline;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.blog-article .article-image {
    height: 200px;
}

.blog-article .article-content {
    padding: 25px;
}

.blog-article h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-article h3 a {
    color: var(--deep-sea);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-article h3 a:hover {
    color: var(--ocean-blue);
}

.blog-article .article-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    padding: 12px 20px;
    background: white;
    border: 2px solid rgba(64, 224, 208, 0.2);
    border-radius: 10px;
    color: var(--deep-sea);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--wave-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.sidebar-widget h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(64, 224, 208, 0.1);
}

/* Search Widget */
.search-widget {
    display: flex;
    background: rgba(64, 224, 208, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.search-widget input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.search-widget input:focus {
    outline: none;
}

.search-widget button {
    padding: 12px 15px;
    background: var(--wave-gradient);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-widget button:hover {
    background: var(--ocean-blue);
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    color: var(--deep-sea);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: rgba(64, 224, 208, 0.05);
    color: var(--ocean-blue);
    transform: translateX(5px);
}

.categories-list span {
    background: rgba(64, 224, 208, 0.2);
    color: var(--ocean-blue);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Recent Posts */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.recent-post-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.recent-post-content h4 a {
    color: var(--deep-sea);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--ocean-blue);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--deep-sea);
    opacity: 0.6;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05), rgba(64, 224, 208, 0.05));
    border: 1px solid rgba(64, 224, 208, 0.2);
}

.newsletter-widget p {
    color: var(--deep-sea);
    opacity: 0.8;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 2px solid rgba(64, 224, 208, 0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    background: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--turquoise);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: rgba(64, 224, 208, 0.1);
    color: var(--ocean-blue);
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--turquoise);
    color: white;
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(64, 224, 208, 0.05);
    color: var(--deep-sea);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(64, 224, 208, 0.1);
    color: var(--ocean-blue);
    transform: translateX(5px);
}

/* Blog CTA */
.blog-cta {
    padding: 100px 0;
    background: var(--wave-gradient);
    color: white;
    text-align: center;
}

.blog-cta .cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.blog-cta .btn-primary {
    background: white;
    color: var(--ocean-blue);
}

.blog-cta .btn-primary:hover {
    background: var(--foam-white);
    transform: translateY(-3px);
}

.blog-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.blog-cta .btn-secondary:hover {
    background: white;
    color: var(--ocean-blue);
}

/* Blog Mobile Styles */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .featured-article .article-image {
        height: 250px;
    }
    
    .featured-article .article-content {
        padding: 25px;
    }
    
    .featured-article h2 {
        font-size: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-article .article-image {
        height: 180px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .blog-pagination {
        flex-wrap: wrap;
    }
    
    .blog-cta .cta-content h2 {
        font-size: 2rem;
    }
}

/* Policy Pages Styles */
.policy-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--foam-white) 0%, rgba(64, 224, 208, 0.1) 100%);
    padding-top: 100px;
}

.policy-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-sea);
    text-align: center;
    margin-bottom: 15px;
}

.policy-subtitle {
    text-align: center;
    color: var(--deep-sea);
    opacity: 0.7;
    font-size: 1.1rem;
}

.policy-content {
    padding: 80px 0;
    background: white;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-sea);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(64, 224, 208, 0.2);
}

.policy-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ocean-blue);
    margin: 30px 0 15px 0;
}

.policy-text p {
    color: var(--deep-sea);
    margin-bottom: 15px;
}

.policy-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-text li {
    color: var(--deep-sea);
    margin-bottom: 8px;
}

.policy-text strong {
    color: var(--ocean-blue);
    font-weight: 600;
}

.policy-text a {
    color: var(--ocean-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-text a:hover {
    color: var(--turquoise);
}

/* Cookie Table Styles */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.cookie-table th {
    background: var(--wave-gradient);
    color: white;
    padding: 15px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(64, 224, 208, 0.1);
    color: var(--deep-sea);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: rgba(64, 224, 208, 0.02);
}

/* Policy Mobile Styles */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-text {
        padding: 0 20px;
    }
    
    .policy-text h2 {
        font-size: 1.5rem;
    }
    
    .policy-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 10px 8px;
    }
}
