/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a3d4f;
    --secondary-color: #1a5f7a;
    --accent-color: #d4463c;
    --accent-light: #e85d50;
    --gold: #ffd700;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f5f8fa;
    --bg-dark: #0a3d4f;
    --gradient-primary: linear-gradient(135deg, #0a3d4f 0%, #1a5f7a 50%, #2d7a8f 100%);
    --gradient-accent: linear-gradient(135deg, #d4463c 0%, #e85d50 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

/* Selection color */
::selection {
    background: var(--accent-color);
    color: white;
}

::-moz-selection {
    background: var(--accent-color);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 61, 79, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 61, 79, 0.98);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    color: var(--text-light);
    text-decoration: none;
    transform: scale(1.02);
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    padding: 60px 20px 80px;
    overflow: hidden;
}

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

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: wave 15s infinite linear;
}

.wave1 {
    animation-duration: 15s;
    animation-delay: 0s;
}

.wave2 {
    animation-duration: 20s;
    animation-delay: 2s;
    opacity: 0.5;
}

.wave3 {
    animation-duration: 25s;
    animation-delay: 4s;
    opacity: 0.3;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    color: rgba(255, 255, 255, 0.2);
}

.float-icon i {
    font-size: inherit;
}

.float-icon:nth-child(2) {
    animation-delay: 1s;
}

.float-icon:nth-child(3) {
    animation-delay: 2s;
}

.float-icon:nth-child(4) {
    animation-delay: 3s;
}

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

.hero-content {
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-logo-large {
    margin-bottom: 2rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo-img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-transform: uppercase;
}

.hero-values {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-12px) scale(1.05);
    background: rgba(255,255,255,0.15);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.value-icon i {
    font-size: inherit;
    display: block;
    width: 100%;
    text-align: center;
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 70, 60, 0.5);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(14px);
        opacity: 0;
    }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 25px;
    font-weight: 900;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 10px;
}

.section-title::before {
    content: '⚓';
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* About Section */
.about {
    background: var(--bg-light);
    padding: 100px 20px 80px;
    margin-top: 60px;
}

/* About Intro Cards */
.about-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.intro-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.intro-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.intro-icon i {
    font-size: inherit;
}

.intro-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Details */
.about-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.content-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-color);
}

.content-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Goals Section */
.about-goals-section {
    margin-bottom: 4rem;
}

.goals-header {
    text-align: center;
    margin-bottom: 3rem;
}

.goals-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.goal-icon i {
    font-size: inherit;
}

.goal-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.goal-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Certification Notice */
.certification-notice {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.cert-icon {
    font-size: 4rem;
    flex-shrink: 0;
    opacity: 0.8;
}

.cert-icon i {
    font-size: inherit;
}

.cert-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-content h3::before {
    content: '✓';
    font-size: 1.5rem;
    color: #00ff88;
    font-weight: bold;
}

.cert-content p {
    color: white !important;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cert-content .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: var(--gold) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certification-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .about-intro,
    .goals-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    transition: var(--transition-slow);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    stroke-width: 2;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Vessel Types */
.vessel-types {
    margin-top: 4rem;
    padding: 4rem;
    background: var(--gradient-primary);
    border-radius: 30px;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.vessel-types::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.vessel-types h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.vessel-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.vessel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.vessel-item:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.vessel-item i {
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.vessel-item span {
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

/* Values Section */
.values {
    background: var(--bg-light);
}

.values-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    border: 2px solid #e0e0e0;
    box-shadow: var(--shadow-sm);
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.value-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: rgba(10, 61, 79, 0.06);
    line-height: 1;
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.value-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.value-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

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

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

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 2px solid #e0e0e0;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    min-height: 44px;
    box-sizing: border-box;
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Page Header (for subpages) */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 20px 100px;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Services Detailed Page */
.services-detailed {
    padding: 80px 20px;
    background: var(--bg-light);
}

.service-detail-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--bg-light);
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.service-detail-icon svg {
    stroke: white;
    stroke-width: 2;
}

.service-detail-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.service-intro {
    margin-bottom: 3rem;
}

.service-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.service-features {
    margin-bottom: 3rem;
}

.service-features h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-highlights {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    margin-top: 3rem;
}

.service-highlights h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.highlights-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
}

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

/* Vessel Types Section */
.vessel-types-section {
    padding: 80px 20px;
    background: white;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.vessel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.vessel-type-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.vessel-type-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    background: white;
}

.vessel-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.vessel-type-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vessel-type-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 20px;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Values Introduction Section */
.values-intro-section {
    padding: 80px 20px;
    background: white;
}

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

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 900;
}

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Values Detailed Page */
.values-detailed {
    padding: 80px 20px;
    background: var(--bg-light);
}

.value-detail-card {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.value-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10, 61, 79, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.value-detail-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.value-detail-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--bg-light);
    position: relative;
    z-index: 1;
}

.value-number-large {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.8;
    flex-shrink: 0;
}

.value-detail-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.value-tagline {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-style: italic;
}

.value-quote {
    background: var(--gradient-primary);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 3rem;
    position: relative;
    box-shadow: var(--shadow-md);
}

.value-quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.value-description {
    margin-bottom: 3rem;
}

.value-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.value-principles {
    margin-bottom: 3rem;
}

.value-principles h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.principle-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.principle-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.principle-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.principle-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.principle-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.value-impact {
    background: linear-gradient(135deg, rgba(10, 61, 79, 0.05), rgba(26, 95, 122, 0.05));
    padding: 3rem;
    border-radius: 25px;
    border-left: 5px solid var(--accent-color);
}

.value-impact h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.value-impact ul {
    list-style: none;
    padding: 0;
}

.value-impact li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
    color: #555;
}

.value-impact li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Values in Action Section */
.values-action-section {
    padding: 80px 20px;
    background: white;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.action-card {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.action-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
}

.action-card p {
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-intro h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    margin-bottom: 4rem;
}

.video-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.video-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    background: white;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.video-container {
    position: relative;
    width: 100%;
    height: 350px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.video-container video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0 0 20px 20px;
}

.video-container video {
    filter: brightness(2.6) contrast(1.1) saturate(1.2);
    background: #f5f5f5;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.video-info {
    padding: 1rem;
    background: white;
    border-radius: 0 0 12px 12px;
}

.video-info h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.video-info p {
    color: rgba(30, 58, 95, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-placeholder {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--primary-color);
    text-align: center;
}

.gallery-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 61, 79, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    padding: 2rem;
}

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

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.gallery-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* Upload Area */
.upload-area {
    border: 3px dashed var(--primary-color);
    background: rgba(10, 61, 79, 0.05);
    transition: var(--transition);
}

.upload-area:hover,
.upload-area.drag-over {
    background: rgba(10, 61, 79, 0.1);
    border-color: var(--accent-color);
}

.upload-content {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.upload-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.upload-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.upload-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.upload-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-image-container {
    max-height: 70vh;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 2rem;
    background: white;
}

.lightbox-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.lightbox-info p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .lightbox-info {
        padding: 1.5rem;
    }
}

/* About Page Specific Styles */
.company-overview {
    padding: 80px 20px;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.overview-text .lead {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.stat-card {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Our Story Section */
.our-story {
    padding: 80px 20px;
    background: var(--bg-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 900;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.mission-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-card p {
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Differentiators Section */
.differentiators {
    padding: 80px 20px;
    background: var(--bg-light);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.diff-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.diff-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.diff-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.diff-card p {
    color: #666;
    line-height: 1.7;
}

/* Goals Section */
.goals-section {
    padding: 80px 20px;
    background: white;
}

.goals-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.goals-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    border-left: 5px solid var(--accent-color);
}

.goal-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.goal-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.goal-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.goal-item p {
    color: #666;
    line-height: 1.7;
}

/* Certification Section */
.certification-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

/* No Bribe Policy Section */
.no-bribe-policy {
    padding: 80px 20px;
    background: white;
}

.policy-card {
    background: linear-gradient(135deg, #1a5f7a 0%, #0a3d4f 100%);
    color: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.policy-icon {
    font-size: 4rem;
    flex-shrink: 0;
    opacity: 0.9;
    color: var(--gold);
}

.policy-icon i {
    font-size: inherit;
}

.policy-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.policy-content h3::before {
    content: '✓';
    font-size: 1.5rem;
    color: #00ff88;
    font-weight: bold;
}

.policy-content p {
    color: white !important;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.policy-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
    color: white;
}

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

.policy-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0;
    color: var(--gold) !important;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for policy section */
@media (max-width: 768px) {
    .policy-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .policy-icon {
        margin-bottom: 1rem;
    }
}

/* Legal Pages */
.legal-content {
    padding: 80px 20px;
    background: white;
}

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

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
    color: #555;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overview-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-content,
    .differentiators-grid,
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-content {
        padding: 60px 20px;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
}

/* Active nav link */
.nav-menu a.active {
    color: var(--gold);
    position: relative;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--gold);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2a42 100%);
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 4rem;
}

.footer-tagline {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-tagline p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    margin-top: 0;
    font-size: 1.2rem;
}

.footer-section:nth-child(3) h3 {
    margin-top: -5rem;
}

.footer-section:nth-child(4) h3 {
    margin-top: -7rem;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

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

.footer-section ul {
    list-style: none;
    padding: 0;
    margin-top: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer {
        padding: 40px 20px;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255,255,255,0.8);
}

.footer-text p {
    color: rgba(255,255,255,0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 61, 79, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    /* Mobile Hero Section */
    .hero {
        min-height: 100vh;
        padding: 80px 15px 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .hero-values {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .value-item {
        padding: 1.2rem 1.5rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .value-item h3 {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }

    /* Mobile Typography */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 1.2rem;
    }

    /* Mobile Content Sections */
    .about-intro,
    .services-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .intro-card,
    .service-card,
    .value-card {
        padding: 1.5rem 1rem;
        margin: 0;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Mobile Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    /* Mobile Vessel Types */
    .vessel-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vessel-item {
        padding: 1rem;
    }

    .vessel-item i {
        font-size: 2rem;
    }

    .vessel-item span {
        font-size: 0.9rem;
    }

    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h3 {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    /* Mobile Video Optimization */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-container {
        height: 250px;
    }

    .video-info {
        padding: 1rem;
    }

    .video-info h4 {
        font-size: 1rem;
    }

    .video-info p {
        font-size: 0.85rem;
    }

    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        border-radius: 10px;
    }

    .gallery-placeholder {
        height: 200px;
    }

    .gallery-placeholder i {
        font-size: 3rem;
    }

    .gallery-placeholder p {
        font-size: 1rem;
    }

    /* Mobile Policy Cards */
    .policy-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        gap: 1.5rem;
    }

    .policy-icon {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .policy-content h3 {
        font-size: 1.6rem;
    }

    .policy-content p {
        font-size: 1rem;
    }

    .policy-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 2rem;
    }

    .policy-highlight {
        font-size: 1.1rem;
    }

    /* Mobile CTA Sections */
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Mobile Page Headers */
    .page-header {
        padding: 100px 15px 60px;
    }

    /* Mobile Container Padding */
    .container {
        padding: 0 10px;
    }

    /* Mobile Section Padding */
    section {
        padding: 40px 10px;
    }

    /* Mobile Touch Improvements */
    .btn,
    .nav-menu a,
    .service-link,
    .value-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        width: 20px;
        height: 30px;
    }

    /* Mobile Image Optimization */
    .logo-img {
        height: 40px;
        width: auto;
    }
    
    .hero-logo-img {
        height: 120px;
        width: auto;
    }
    
    .intro-icon,
    .goal-icon,
    .diff-icon,
    .mission-icon {
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    /* Optimize background images for mobile */
    .hero-background {
        background-size: cover;
        background-position: center;
    }
    
    /* Reduce animation complexity on mobile */
    .wave {
        animation-duration: 20s;
    }
    
    .float-icon {
        font-size: 2rem;
        opacity: 0.1;
    }

    /* Mobile Service Detail Cards */
    .service-detail-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .service-detail-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .service-detail-title h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .service-tagline {
        font-size: 1rem;
    }

    .service-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-item h4 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .service-highlights {
        padding: 2rem 1rem;
    }

    .highlights-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 2rem;
    }

    /* Mobile Value Detail Cards */
    .value-detail-card {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .value-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .value-number-large {
        font-size: 4rem;
    }

    .value-detail-title h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .value-tagline {
        font-size: 1rem;
    }

    .value-quote {
        padding: 1.5rem 1rem;
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .value-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .principle-item {
        padding: 1.5rem 1rem;
    }

    .principle-icon {
        font-size: 2rem;
    }

    .principle-item h4 {
        font-size: 1.1rem;
    }

    .principle-item p {
        font-size: 0.9rem;
    }

    .value-impact {
        padding: 2rem 1rem;
    }

    .value-impact li {
        font-size: 0.95rem;
        padding: 0.6rem 0 0.6rem 2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .value-item {
        padding: 1rem 1.2rem;
        max-width: 280px;
    }

    .value-item h3 {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .intro-card,
    .service-card,
    .value-card {
        padding: 1.5rem 1rem;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .vessel-list {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .vessel-item {
        padding: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .policy-card {
        padding: 2rem 1rem;
    }

    .policy-content h3 {
        font-size: 1.4rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 50px 10px;
    }

    .page-header {
        padding: 100px 10px 60px;
    }
}

/* Mobile Landscape Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 80vh;
        padding: 60px 15px 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-values {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .value-item {
        flex: 1;
        min-width: 150px;
        padding: 1rem;
    }

    .page-header {
        padding: 100px 15px 60px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .value-card:hover,
    .intro-card:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }

    .service-card:active,
    .value-card:active,
    .intro-card:active {
        transform: scale(0.99);
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }

    .nav-menu a:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.98);
    }
}

