/* ========================================
   Safe Offshore - ShipMarine Inspired V2
   ======================================== */

/* ========== CSS Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - ShipMarine Inspired */
    --primary-color: #1a2e4a;
    --primary-dark: #0f1c2e;
    --primary-light: #2c5f8d;
    --secondary-color: #4a90c7;
    --accent-color: #ff6b35;
    --dark-blue: #1a2e4a;
    --light-blue: #f5f7fa;

    /* Neutral Colors */
    --text-primary: #32373c;
    --text-secondary: #5a6c7d;
    --text-light: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a2e4a;
    --border-color: #dde2e8;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========== Container ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Header & Navigation ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header.scrolled .navbar {
    padding: 0.5rem 0;
}

.header.scrolled .logo img {
    height: 50px;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--light-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-toggle .icon {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: var(--light-blue);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 61, 91, 0.8) 0%, rgba(0, 168, 232, 0.6) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    z-index: 10;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons - ShipMarine Style */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-normal);
    font-size: 1.5rem;
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-control.prev {
    left: 2rem;
}

.slider-control.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot.active {
    background-color: var(--text-light);
    width: 30px;
    border-radius: 6px;
}

/* ========== Section Styles ========== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* ========== About Section ========== */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    gap: var(--spacing-lg);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 1rem;
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-card {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.feature-icon .icon {
    width: 2rem;
    height: 2rem;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--text-secondary);
}

/* ========== Services Preview Section ========== */
.services-preview {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.service-icon .icon {
    width: 1.8rem;
    height: 1.8rem;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link .icon {
    width: 0.9rem;
    height: 0.9rem;
}

.service-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* ========== Gallery Section ========== */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 102, 204, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay .icon {
    color: var(--text-light);
    width: 3rem;
    height: 3rem;
    transform: scale(0);
    transition: var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay .icon {
    transform: scale(1);
}

/* ========== Links Section ========== */
.links-section {
    background-color: var(--bg-white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.link-card {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.link-card img {
    margin: 0 auto 1rem;
    max-height: 120px;
    width: auto;
}

.link-card p {
    font-weight: 600;
    color: var(--text-primary);
}

/* ========== Footer ========== */
.footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-dark));
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-col p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: var(--transition-normal);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact .icon {
    color: var(--secondary-color);
    width: 1.2rem;
    height: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== Gallery Modal ========== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.modal-close,
.modal-prev,
.modal-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.modal-close:hover,
.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.modal-close .icon,
.modal-prev .icon,
.modal-next .icon {
    width: 1.2rem;
    height: 1.2rem;
}

.modal-close {
    top: 2rem;
    right: 2rem;
}

.modal-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.modal-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ========== Page Header (Internal Pages) ========== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-color));
    padding: 8rem 0 4rem;
    margin-top: 80px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.page-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
    transition: var(--transition-normal);
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.breadcrumb .separator {
    opacity: 0.5;
}

.breadcrumb .current {
    opacity: 1;
    font-weight: 500;
}

/* ========== About Detailed Section ========== */
.about-detailed-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.about-intro {
    margin-bottom: var(--spacing-lg);
}

.about-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
}

.about-intro-text p {
    margin-bottom: 1.5rem;
}

/* ========== Values Section ========== */
.values-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
    border-radius: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.value-card {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.value-icon .icon {
    width: 2.5rem;
    height: 2.5rem;
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== Management Policy Section ========== */
.policy-section {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(26, 46, 74, 0.03), rgba(74, 144, 199, 0.03));
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.policy-intro {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.policy-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: justify;
}

.policy-subtitle {
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.policy-subtitle h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.policy-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--primary-color);
}

.policy-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.policy-item-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    flex-shrink: 0;
}

.policy-item-icon .icon {
    width: 2rem;
    height: 2rem;
}

.policy-item p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ========== Differentials Section ========== */
.differentials-section {
    margin: var(--spacing-xl) 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.differential-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.differential-item .icon {
    color: var(--primary-color);
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.differential-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.differential-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========== CTA Section ========== */
.cta-section {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--text-light);
    margin-top: var(--spacing-xl);
}

.cta-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Service Page Specific Styles ========== */
.service-page-section {
    padding: var(--spacing-xl) 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.service-description h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.service-description ul {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.service-description ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.service-description ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.highlight-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.highlight-item .icon {
    color: var(--primary-color);
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--dark-blue);
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ========== Service Images Grid ========== */
.service-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.service-image-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
}

.service-image-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image-item:hover img {
    transform: scale(1.05);
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
}

/* ========== Service Operations Grid ========== */
.service-operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.operation-item {
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--border-color);
}

.operation-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.operation-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.operation-caption {
    padding: 1.5rem;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--bg-light);
    margin: 0;
}

@media (max-width: 768px) {
    .service-operations-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .operation-item img {
        height: 250px;
    }

    .operation-caption {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* ========== Product Page Styles ========== */
.product-page-section {
    padding: var(--spacing-xl) 0;
}

.product-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
    background-color: var(--bg-white);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 500px;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.thumbnail {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.thumbnail:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.product-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.product-description {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.product-description p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-features h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition-normal);
}

.feature-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.feature-item .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.product-cta {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    text-align: center;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.product-specifications {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg);
    background-color: var(--bg-light);
    border-radius: 15px;
}

.product-specifications h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.specs-table {
    max-width: 900px;
    margin: 0 auto;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.specs-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.specs-table thead th {
    padding: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
}

.specs-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.specs-table tbody tr:hover {
    background-color: var(--light-blue);
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
}

.specs-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.specs-table td:first-child .icon {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--primary-color);
}

.specs-table td:last-child {
    text-align: right;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.product-applications {
    margin: var(--spacing-xl) 0;
}

.product-applications h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.application-card {
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.application-card .icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.application-card h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.application-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Product Page */
@media (max-width: 992px) {
    .product-main-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .product-gallery {
        position: static;
    }

    .product-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .thumbnail img {
        height: 80px;
    }

    .product-header h2 {
        font-size: 1.75rem;
    }

    .specs-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .specs-table td:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ========== Products Showcase (Equipment Cards) ========== */
.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.product-card-equipment {
    background-color: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.product-card-equipment:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.product-card-equipment:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.product-card-content h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

.product-material {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
    padding: 0.5rem 1rem;
    background-color: var(--light-blue);
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}

.product-specs-mini {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.product-specs-mini span {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.product-specs-mini strong {
    color: var(--primary-color);
    font-weight: 600;
}

.product-description-mini {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.product-card-content .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Responsive Products Showcase */
@media (max-width: 768px) {
    .products-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .product-card-image {
        height: 200px;
    }

    .product-card-content h4 {
        font-size: 1.2rem;
    }

    .product-specs-mini {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========== Clients Section ========== */
.clients-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: var(--spacing-md) auto var(--spacing-xl);
    font-size: 1.1rem;
    line-height: 1.6;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.client-item {
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    min-height: 180px;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.client-item img {
    max-width: 90%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.client-item:hover img {
    transform: scale(1.05);
}

.clients-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.clients-cta h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.8rem;
}

.clients-cta p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-md);
    }

    .client-item {
        padding: var(--spacing-md);
        min-height: 120px;
    }

    .client-item img {
        max-height: 80px;
    }
}

/* ========== Contact Section ========== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.contact-info-item {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--spacing-md);
    transition: var(--transition-normal);
    align-items: flex-start;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon .icon {
    width: 1.3rem;
    height: 1.3rem;
    fill: white;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
    word-wrap: break-word;
}

.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    margin-top: var(--spacing-sm);
    width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    align-self: flex-start;
}

.contact-form .btn .icon {
    width: 14px;
    height: 14px;
    margin-right: 0.4rem;
}

.map-container {
    margin-top: var(--spacing-xl);
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container .btn-secondary {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    max-width: 250px;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.map-container .btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.map-container .btn-secondary .icon {
    width: 14px;
    height: 14px;
    margin-right: 0.4rem;
}

.map-wrapper iframe {
    display: block;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-light);
        display: none;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .dropdown-toggle .icon {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding-left: 2rem;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-control.prev {
        left: 1rem;
    }

    .slider-control.next {
        right: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-features,
    .services-grid,
    .gallery-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .modal-close,
    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
    }

    .modal-close .icon,
    .modal-prev .icon,
    .modal-next .icon {
        width: 1rem;
        height: 1rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
    }

    .modal-prev {
        left: 1rem;
    }

    .modal-next {
        right: 1rem;
    }
}

/* Responsive Styles for Policy Section */
@media (max-width: 768px) {
    .policy-section {
        padding: var(--spacing-md);
    }

    .policy-intro {
        padding: var(--spacing-sm);
    }

    .policy-intro p {
        font-size: 1rem;
        text-align: left;
    }

    .policy-subtitle h3 {
        font-size: 1.2rem;
    }

    .policy-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .policy-item:hover {
        transform: translateX(5px);
    }

    .policy-item-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .policy-item-icon .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .policy-item p {
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .policy-section {
        padding: 1rem;
    }

    .policy-item {
        padding: 0.75rem;
    }
}

/* ========== Print Styles ========== */
@media print {
    .header,
    .mobile-menu-toggle,
    .slider-control,
    .slider-dots,
    .back-to-top,
    .hero-buttons {
        display: none;
    }

    .hero {
        height: auto;
        margin-top: 0;
    }
}
