/* ===================================
   Diving Montenegro - Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #0077b6;
    --primary-dark: #005f8a;
    --primary-light: #00a8e8;
    --secondary-color: #023e8a;
    --accent-color: #00b4d8;
    --dark-color: #1a1a2e;
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 62, 138, 0.1) 0%, rgba(0, 119, 182, 0.8) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 119, 182, 0.5);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.logo i {
    font-size: 1.75rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--white);
    position: relative;
}

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

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

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
    background: var(--primary-color);
}

/* Active state - X icon */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--primary-color);
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
    background: var(--primary-color);
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/main-bg.jpg') center/cover no-repeat;
    padding: 120px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* Page Headers */
.page-header {
    position: relative;
    padding: 180px 20px 100px;
    background: url('../images/bg.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
}

.page-header.diving-spots {
    background: url('../images/bg-diving.jpg') center/cover no-repeat;
}

.page-header.packages {
    background: url('../images/bg-packages.jpg') center/cover no-repeat;
}

.page-header.about {
    background: url('../images/bg-about.jpg') center/cover no-repeat;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.page-header .container {
    position: relative;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 119, 182, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Introduction Section */
.intro {
    background: var(--light-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.intro-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.intro-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.intro-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card .image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-card .price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.service-card .content {
    padding: 25px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-card .btn {
    width: 100%;
}

/* Packages Section */
.packages {
    background: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.package-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.package-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured.animate-in {
    transform: scale(1.05);
}

.package-card:hover {
    box-shadow: var(--shadow-lg);
}

.package-card .image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card .content {
    padding: 30px;
}

.package-card h3 {
    margin-bottom: 10px;
}

.package-card .duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.package-card .features {
    margin-bottom: 20px;
}

.package-card .features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.package-card .features li:last-child {
    border-bottom: none;
}

.package-card .features i {
    color: var(--accent-color);
}

.package-card .price-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.package-card .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-plus {
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.cta .container {
    position: relative;
}

.cta-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Team Section */
.team {
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

.team-card .content {
    padding: 25px;
}

.team-card h4 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card .certifications {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.team-card .cert-badge {
    padding: 5px 12px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Featured Instructor Cards */
.instructor-featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    align-items: center;
}

.instructor-featured:nth-child(even) {
    direction: rtl;
}

.instructor-featured:nth-child(even) > * {
    direction: ltr;
}

.instructor-featured-image {
    height: 100%;
    min-height: 350px;
}

.instructor-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.instructor-featured-content h3 {
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.instructor-featured-content .role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.instructor-featured-content .certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.instructor-featured-content .cert-badge {
    padding: 6px 14px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.instructor-featured-content .bio {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Team grid for 3 columns */
.team-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .instructor-featured {
        grid-template-columns: 250px 1fr;
    }
    
    .instructor-featured-image {
        min-height: 300px;
    }
    
    .team-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem !important;
    }
    .instructor-featured {
        grid-template-columns: 1fr;
    }
    
    .instructor-featured:nth-child(even) {
        direction: ltr;
    }
    
    .instructor-featured-image {
        min-height: 250px;
    }
    
    .instructor-featured-content {
        padding: 30px;
    }
    
    .team-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.95);
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.gallery-item .overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--border-radius-sm);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.contact-details li:last-child {
    border-bottom: none;
}

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

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-details a,
.contact-details span {
    color: var(--text-light);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-social h4 {
    margin-bottom: 15px;
}

.contact-social .social-links {
    display: flex;
    gap: 10px;
}

.contact-social .social-links a {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition);
}

.contact-social .social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

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

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

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    height: 450px;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container iframe {
    width: 80%;
    height: 100%;
    border: none;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1500;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.notification.active {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid #27ae60;
}

.notification.success i {
    color: #27ae60;
}

.notification.error {
    border-left: 4px solid #e74c3c;
}

.notification.error i {
    color: #e74c3c;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

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

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

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
}

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

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

.footer-contact .contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.certifications {
    display: flex;
    align-items: center;
    gap: 15px;
}

.certifications span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.certifications img {
    height: 40px;
    opacity: 0.8;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .intro-grid,
    .services-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured.animate-in {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 100px 30px 30px 30px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        color: var(--text-color);
        padding: 18px 0;
        width: 100%;
        display: block;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
    }
    
    .nav-cta {
        margin-top: 30px;
        width: auto;
        min-width: 200px;
    }
    
    .intro-grid,
    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image .experience-badge {
        right: 20px;
        bottom: -10px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .certifications {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
}

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

.carousel-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.testimonial-info h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-content {
    position: relative;
}

.testimonial-content .quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
    max-height: 250px;
    overflow-y: auto;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        max-height: 200px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Diving Spots Page */
.dive-spots-section {
    padding: 80px 0;
}

.dive-spot-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 30px;
}

.dive-spot-card.reverse {
    direction: rtl;
}

.dive-spot-card.reverse > * {
    direction: ltr;
}

.dive-spot-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.dive-spot-img-main {
    grid-column: span 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.dive-spot-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dive-spot-img-main:hover img {
    transform: scale(1.04);
}

.dive-spot-img-secondary {
    grid-column: 1 / -1;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 16/7;
}

.dive-spot-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dive-spot-img-secondary:hover img {
    transform: scale(1.04);
}

.dive-spot-header {
    margin-bottom: 20px;
}

.dive-spot-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.dive-spot-badge.beginner {
    background: rgba(0, 180, 216, 0.12);
    color: var(--accent-color);
}

.dive-spot-badge.licensed {
    background: rgba(0, 62, 138, 0.1);
    color: var(--secondary-color);
}

.dive-spot-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    margin-bottom: 18px;
    color: var(--dark-color);
}

.dive-spot-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.dive-spot-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 25px 0;
    padding: 18px 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-color);
}

.dive-spot-meta span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.dive-spot-meta i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .dive-spot-card,
    .dive-spot-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 35px;
    }
    
    .dive-spot-card.reverse > * {
        direction: ltr;
    }
}

@media (max-width: 576px) {
    .dive-spot-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* Language Switcher */
.lang-switcher-desktop {
    display: flex;
    gap: 5px;
    margin-left: 10px;
}

.lang-switcher-mobile {
    display: none;
}

.lang-btn {
    padding: 5px 12px;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--white);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.header.scrolled .lang-btn {
    color: var(--text-light);
}

.header.scrolled .lang-btn:hover {
    color: var(--primary-color);
}

.header.scrolled .lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .lang-switcher-desktop {
        display: none;
    }
    
    .lang-switcher-mobile {
        display: flex;
        gap: 10px;
        padding: 15px 0;
        justify-content: center;
    }
    
    .lang-switcher-mobile .lang-btn {
        color: var(--text-color);
        padding: 8px 20px;
        border: 2px solid #eee;
    }
    
    .lang-switcher-mobile .lang-btn.active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
    }
}

/* Price Table */
.price-table-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.price-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.price-table th {
    padding: 18px 25px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: left;
    font-size: 1rem;
}

.price-table th:last-child {
    text-align: right;
}

.price-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.price-table td i {
    color: var(--primary-color);
    margin-right: 12px;
    width: 18px;
    text-align: center;
}

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

.price-table tbody tr:hover {
    background: rgba(0, 119, 182, 0.04);
}

.price-cell {
    text-align: right;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .price-table th,
    .price-table td {
        padding: 14px 15px;
        font-size: 0.9rem;
    }
    
    .price-cell {
        font-size: 1rem;
    }
}

/* Booking Form */
.booking-form-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

.booking-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.booking-form .form-group input,
.booking-form .form-group select,
.booking-form .form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

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

.booking-submit {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .booking-form-wrap {
        padding: 25px;
    }
    
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 119, 182, 0.03);
}

.faq-question h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 62px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.animate-in {
    opacity: 1;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}
