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

:root {
    --primary-color: #0097b2;
    --primary-dark: #007a91;
    --primary-light: #00b8d4;
    --secondary-color: #000000;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-full {
    width: 100%;
}

/* Navigation - Modern Sticky Header */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #001f26 0%, #003d47 100%);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 151, 178, 0.2);
}

.navbar.scrolled {
    box-shadow: 0 4px 35px rgba(0, 0, 0, 0.4);
    border-bottom-color: rgba(0, 151, 178, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    position: relative;
}

.nav-logo {
    z-index: 1002;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
    filter: brightness(0) invert(1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 151, 178, 0.5));
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
    text-shadow: 0 0 20px rgba(0, 151, 178, 0.5);
}

.nav-link.active {
    color: #ffffff;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #1a1a1a;
    transition: width 0.3s ease;
    border-radius: 3px 3px 0 0;
    box-shadow: none;
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown > .nav-link::after {
    display: none;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-dropdown-toggle .fa-chevron-down {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #001f26 0%, #003d47 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    min-width: 220px;
    padding: 1rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border: 1px solid rgba(0, 151, 178, 0.3);
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.85rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(0, 151, 178, 0.2);
    color: #ffffff;
    padding-left: 2rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), #00e5ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-item:hover::before {
    opacity: 1;
}

/* Optional: Nav CTA Button */
.nav-cta {
    margin-left: 1rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 151, 178, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.3);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 10002;
    background: none;
    border: none;
    position: relative;
    gap: 5px;
}

.bar {
    width: 26px;
    height: 2.5px;
    background-color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

/* Hero Section */
.hero {
    padding: 0;
    background: linear-gradient(135deg, #003d47 0%, #001f26 100%);
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
    text-align: left;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    color: white;
    max-width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.highlight {
    color: #0097b2;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    line-height: 1.7;
    max-width: 100%;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
}

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

.hero-image {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.scroll-indicator:hover {
    color: var(--primary-color);
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 
s Section */
.services {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}


.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-info h4 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.testimonial-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.testimonial-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    padding: 3rem 0 1rem;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

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

.about-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-stats-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-stats-video {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background-color: var(--background-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.7;
    color: white;
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

.package-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.package-features i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
}

/* Form Styles */
.contact-form {
    background: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.1);
}

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

/* Footer - Modern Design */
.footer {
    background: linear-gradient(135deg, #001f26 0%, #003d47 100%);
    color: white;
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: auto;
    max-height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 151, 178, 0.4);
}

.footer-social-link i {
    font-size: 1.25rem;
}

/* Footer Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    display: inline-block;
}

.footer-column ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

/* Social Links */
.hero-socials {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
}


.wrapper {
    display: inline-flex;
    list-style: none;
    height: 60px;
    width: auto;
    padding-top: 0;
    font-family: "Poppins", sans-serif;
    justify-content: flex-start;
}

.wrapper .icon {
    position: relative;
    background: #fff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon i {
    color: #333;
    transition: color 0.2s ease;
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #fff;
    color: #333;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #fff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #fff;
}

.wrapper .instagram:hover i {
    color: #fff;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
    background: #0077b5;
    color: #fff;
}

.wrapper .linkedin:hover i {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

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

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

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-hover);
}

.modal-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: white;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        width: calc(100% - 20px);
    }
    
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.70);
    }
    
    .hero-container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.6rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        max-width: 100%;
    }
    
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        justify-items: center;
    }
    
    /* About Section Tablet */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-intro {
        text-align: center;
    }
    
    .about-extra {
        text-align: center;
    }
    
    .about-extra h2 {
        text-align: center;
    }
    
    .about-extra p {
        text-align: center;
        padding: 0 2rem;
    }
    
    /* Preview Sections Tablet */
    .about-preview .preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Portfolio Page Tablet */
    .portfolio-section {
        padding: 70px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .portfolio-image {
        height: 280px;
    }
    
    .portfolio-info {
        padding: 2rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.6rem;
    }
    
    .portfolio-details {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3.5rem 2rem;
        margin-top: 3.5rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section p {
        font-size: 1.05rem;
    }
    
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .packages-text-content {
        padding: 0 2rem;
    }
    
    .packages-text-content .section-header h2 {
        font-size: 2.2rem;
    }
    
    .packages-description {
        font-size: 1.05rem;
    }
    
    /* Contact Section Tablet */
    .contact {
        padding: 70px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h3 {
        text-align: center;
        font-size: 2.2rem;
    }
    
    .contact-info p {
        text-align: center;
        padding: 0 2rem;
    }
    
    .contact-methods {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }
    
    .contact-method {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
    
    .contact-form {
        max-width: 700px;
        margin: 0 auto;
    }
    
    /* Map Section Tablet */
    .map-section {
        padding: 70px 0;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* FAQ Section Tablet */
    .faq-section {
        padding: 70px 0;
    }
    
    /* Footer Tablet */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-tagline {
        text-align: center;
        max-width: 500px;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contact-preview-content {
        grid-template-columns: 1fr;
    }
    
    /* Contact Glassmorphism Tablet */
    .contact-preview-new {
        padding: 100px 0;
        min-height: 500px;
    }
    
    .contact-background-image {
        background-attachment: scroll;
    }
    
    .contact-glass-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .glass-card {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-preview-new .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-preview-new .section-header p {
        font-size: 1.1rem;
    }
    
    /* Map Section Tablet */
    .map-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Portfolio Page Responsive */
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .portfolio-item {
        max-width: 100%;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-overlay {
        background: rgba(0, 151, 178, 0.95);
    }
    
    .portfolio-info {
        padding: 1.25rem 1rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.65rem;
    }
    
    .portfolio-category {
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }
    
    .portfolio-tags {
        flex-wrap: wrap;
        gap: 0.35rem;
        margin-bottom: 0.85rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }
    
    .portfolio-link {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }
    
    .portfolio-details {
        padding: 1rem;
    }
    
    .portfolio-details h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-details p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 1.5rem;
        margin-top: 3rem;
        border-radius: 12px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.75rem;
        padding: 0 1rem;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
    }
    
    /* Testimonials Responsive */
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .testimonial-avatar i {
        font-size: 1.8rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.2rem;
    }
    
    .testimonial-role {
        font-size: 0.9rem;
    }
    
    .testimonial-rating i {
        font-size: 0.9rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .testimonial-link {
        font-size: 0.9rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Preview Sections Mobile */
    .preview-section {
        padding: 60px 0;
    }
    
    /* About Preview - Waarom Kiezen Voor Nexorix */
    .about-preview .preview-content {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .about-preview .preview-text {
        width: 100%;
        order: 1;
    }
    
    .about-preview .preview-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
        color: var(--secondary-color);
    }
    
    .about-preview .preview-intro {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        text-align: center;
        color: var(--text-light);
    }
    
    .about-preview .preview-highlights {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .about-preview .highlight-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        text-align: left;
        padding: 1.25rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }
    
    .about-preview .highlight-item:active {
        transform: scale(0.98);
        box-shadow: 0 1px 5px rgba(0,0,0,0.12);
    }
    
    .about-preview .highlight-item i {
        font-size: 2rem;
        min-width: 45px;
        flex-shrink: 0;
        color: var(--primary-color);
    }
    
    .about-preview .highlight-item span {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
    }
    
    .about-preview .preview-text .btn {
        width: 100%;
        max-width: 320px;
        margin: 1rem auto 0;
        display: block;
    }
    
    .about-preview .preview-image {
        width: 100%;
        order: 2;
        margin-top: 1.5rem;
    }
    
    .about-preview .preview-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    }
    
    /* Portfolio Preview - Ons Portfolio */
    .portfolio-preview {
        padding: 60px 0;
    }
    
    .portfolio-preview .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .portfolio-preview .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-preview .section-header p {
        font-size: 1rem;
        color: var(--text-light);
    }
    
    .portfolio-preview-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 2rem;
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }
    
    .preview-portfolio-card {
        width: 100%;
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .preview-portfolio-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    .preview-portfolio-image {
        height: 250px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .preview-portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .preview-portfolio-overlay {
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 2;
    }
    
    .preview-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    .preview-portfolio-card h4 {
        font-size: 1.2rem;
        padding: 1.5rem;
        margin: 0;
        text-align: center;
        font-weight: 600;
    }
    
    /* Packages Preview - Onze Pakketten */
    .packages-preview {
        padding: 60px 0;
    }
    
    .packages-text-content {
        padding: 0 1rem;
    }
    
    .packages-text-content .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .packages-text-content .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .packages-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .packages-description:last-of-type {
        margin-bottom: 2rem;
    }
    
    .packages-text-content .preview-cta {
        margin-top: 2rem;
    }
    
    .packages-text-content .preview-cta .btn {
        width: 100%;
        max-width: 320px;
    }
    
    /* Contact Preview Mobile */
    .contact-preview .preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .preview-contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .preview-info-item {
        text-align: center;
    }
    
    /* Portfolio Page Mobile - Keeping old classes for backwards compatibility */
    .portfolio-card h3 {
        font-size: 1.2rem;
    }
    
    .portfolio-tags {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* SEO Pages Responsive */
    .seo-content {
        padding: 60px 0;
    }
    
    .seo-content > .container > h2:first-of-type {
        padding: 2rem;
    }
    
    .seo-list {
        padding: 2rem;
    }
    
    .seo-packages {
        padding: 2rem;
    }
    
    .seo-package-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-process {
        padding: 2rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .seo-cta {
        padding: 3rem 2rem;
    }
    
    .seo-cta h3 {
        font-size: 1.6rem;
    }
    
    
    /* Contact Preview Glassmorphism Mobile */
    .contact-preview-new {
        padding: 80px 0;
        min-height: auto;
    }
    
    .contact-background-image {
        background-attachment: scroll;
        background-position: center;
    }
    
    .contact-glass-content {
        padding: 0 1rem;
    }
    
    .contact-preview-new .section-header {
        margin-bottom: 3rem;
    }
    
    .contact-preview-new .section-header h2 {
        font-size: 2rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .contact-preview-new .section-header p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
    
    .contact-glass-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .glass-card {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .glass-card:hover {
        transform: translateY(-5px);
    }
    
    .glass-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .glass-icon i {
        font-size: 2rem;
    }
    
    .glass-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .glass-card p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .glass-link {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .contact-cta-glass {
        margin-top: 2.5rem;
    }
    
    .btn-glass {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 0.9rem 2.5rem;
    }
    
    /* Map Section Responsive */
    .map-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    /* FAQ Responsive */
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-content h2 {
        font-size: 1.6rem;
    }
    
    .seo-content h3 {
        font-size: 1.3rem;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
    
    .seo-list li {
        font-size: 0.95rem;
    }
    
    .seo-cta h3 {
        font-size: 1.4rem;
    }
    
    .seo-cta .btn {
        font-size: 1rem;
        padding: 12px 30px;
    }
    
    .seo-image-section {
        padding: 1.5rem;
    }
    
    /* Navbar Responsive - Enhanced Mobile */
    .navbar {
        padding: 0;
        box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        left: 0;
        right: 0;
        margin: 0;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
        max-width: 100%;
        margin: 0;
    }
    
    .logo-img {
        height: 38px;
        filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 151, 178, 0.3));
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100vh;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        max-width: none;
        text-align: left;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: none;
        padding: 0;
        border: none;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex !important;
        position: relative;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10002 !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #1a1a1a !important;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #1a1a1a !important;
    }

    .nav-menu .nav-link {
        padding: 1.5rem 2rem;
        margin: 0;
        border: none;
        border-radius: 0;
        transition: all 0.25s ease;
        width: 100%;
        max-width: 600px;
        color: #1a1a1a;
        font-size: 1.5rem;
        font-weight: 500;
        position: relative;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background: transparent;
        text-decoration: none;
        letter-spacing: -0.01em;
    }
    
    .nav-menu .nav-link::before {
        display: none;
    }
    
    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0.75rem;
        width: 0;
        height: 3px;
        background: #000000;
        transition: width 0.3s ease;
        opacity: 1;
        z-index: 1;
    }
    
    .nav-menu .nav-link:hover {
        background: transparent;
        color: #00343f;
        padding-left: 2.5rem;
    }
    
    .nav-menu .nav-link:hover::after {
        width: 40px;
        background: #000000;
        opacity: 1;
    }
    
    .nav-menu .nav-link.active {
        background: transparent;
        color: #00343f;
        font-weight: 600;
    }
    
    .nav-menu .nav-link.active::after {
        width: 40px;
        background: #000000;
        opacity: 1;
    }

    /* Mobile Dropdown Styles - Modern Design */
    .nav-menu .nav-dropdown {
        width: 100%;
        max-width: 600px;
        margin: 0;
    }

    .nav-menu .nav-dropdown > .nav-link {
        width: 100% !important;
        justify-content: space-between !important;
        padding-right: 2rem !important;
        position: relative !important;
        cursor: pointer !important;
    }
    
    .nav-menu .nav-dropdown > .nav-link i {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.85rem;
        color: #999;
        margin-left: 1rem;
    }
    
    .nav-menu .nav-dropdown.active > .nav-link {
        color: #00343f;
    }
    
    .nav-menu .nav-dropdown.active > .nav-link i {
        transform: rotate(180deg);
        color: #00343f;
    }

    .nav-menu .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        margin: 0 !important;
        margin-top: 0.75rem !important;
        margin-left: 0 !important;
        border: none !important;
        border-left: 2px solid #e9ecef !important;
        background: transparent !important;
        box-shadow: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease 0.1s, 
                    visibility 0.4s ease 0.1s,
                    margin-top 0.3s ease,
                    border-left-color 0.3s ease !important;
        padding: 0 !important;
        padding-left: 1.5rem !important;
        display: block !important;
    }

    .nav-menu .nav-dropdown.active .dropdown-menu {
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0.75rem 0 !important;
        margin-top: 0.75rem !important;
        border-left-color: #00343f !important;
    }

    .nav-menu .dropdown-item {
        padding: 1.1rem 0 !important;
        padding-left: 1.5rem !important;
        color: #666 !important;
        font-size: 1.15rem !important;
        font-weight: 400 !important;
        text-decoration: none !important;
        display: block !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        line-height: 1.5 !important;
        opacity: 0 !important;
        transform: translateX(-10px) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-item {
        opacity: 1 !important;
        transform: translateX(0) !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-item:nth-child(1) {
        transition-delay: 0.05s;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-item:nth-child(2) {
        transition-delay: 0.1s;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-item:nth-child(3) {
        transition-delay: 0.15s;
    }
    
    .nav-menu .nav-dropdown.active .dropdown-item:nth-child(4) {
        transition-delay: 0.2s;
    }
    
    .nav-menu .dropdown-item::before {
        content: '→';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #00343f;
        font-size: 0.9rem;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        transform: translateY(-50%) translateX(-5px);
    }
    
    .nav-menu .dropdown-item::after {
        content: '';
        position: absolute;
        left: 1.5rem;
        bottom: 0.75rem;
        width: 0;
        height: 2px;
        background: #00343f;
        transition: width 0.3s ease;
    }
    
    .nav-menu .dropdown-item:hover {
        padding-left: 2rem;
        background: transparent;
        color: #00343f;
        transform: translateX(5px);
    }
    
    .nav-menu .dropdown-item:hover::before {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
    
    .nav-menu .dropdown-item:hover::after {
        width: 35px;
    }

    /* Hero Section Mobile */
    .hero {
        height: 100vh;
        max-height: 100vh;
        padding: 0;
    }
    
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.70);
    }

    .hero-container {
        padding: 0 25px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        gap: 1.5rem;
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        max-width: 100%;
        text-align: center;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 0;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        margin-top: 0;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.95rem 1.85rem;
        font-size: 0.98rem;
    }

    .hero-socials {
        justify-content: center;
        margin-top: 0.75rem;
        gap: 1.25rem;
    }
    
    .hero-socials a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .wrapper {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .back-to-top {
        display: none !important;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .service-features {
        text-align: left;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .about-text h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-intro {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        max-width: 100%;
    }
    
    .about-features {
        width: 100%;
        align-items: center;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        width: 100%;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    .feature-content {
        text-align: center;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: center;
    }

    .about-stats-img,
    .about-stats-video {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius);
    }
    
    /* About Extra Content Mobile */
    .about-extra {
        margin-top: 3rem;
        padding-top: 3rem;
        text-align: center;
    }
    
    .about-extra h2 {
        font-size: 2rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .about-extra p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    /* Packages Section Mobile */
    .packages {
        padding: 60px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }

    .package-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .package-features li {
        font-size: 0.95rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .contact-info p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        width: 100%;
        max-width: 600px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }
    
    .contact-method {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 2.5rem 2rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 151, 178, 0.15);
        border: 2px solid rgba(0, 151, 178, 0.1);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
    }
    
    .contact-method::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
        border-radius: 5px 5px 0 0;
        transition: all 0.3s ease;
    }
    
    .contact-method:active {
        transform: translateY(-5px) scale(0.99);
        box-shadow: 0 12px 35px rgba(0, 151, 178, 0.25);
        border-color: rgba(0, 151, 178, 0.2);
    }
    
    .contact-method:active::before {
        width: 75%;
        height: 6px;
    }
    
    .contact-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(0, 151, 178, 0.35);
        transition: all 0.4s ease;
        position: relative;
        margin: 0 auto;
    }
    
    .contact-icon::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        pointer-events: none;
    }
    
    .contact-method:active .contact-icon {
        transform: rotate(-8deg) scale(1.08);
        box-shadow: 0 8px 25px rgba(0, 151, 178, 0.45);
    }
    
    .contact-icon i {
        font-size: 2.25rem;
        color: white;
        position: relative;
        z-index: 1;
    }
    
    .contact-details {
        flex: 1;
        text-align: center;
        width: 100%;
    }
    
    .contact-details h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: var(--secondary-color);
        font-weight: 700;
        letter-spacing: -0.02em;
        text-align: center;
    }
    
    .contact-details p {
        font-size: 1rem;
        margin: 0;
        color: var(--text-light);
        line-height: 1.6;
        text-align: center;
    }
    
    .contact-details a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        position: relative;
        display: inline-block;
    }
    
    .contact-details a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2.5px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
        border-radius: 5px;
        transition: width 0.4s ease;
    }
    
    .contact-details a:active::after {
        width: 90%;
    }
    
    .contact-social {
        margin-top: 3.5rem;
        text-align: center;
        padding: 2.5rem 2rem;
        background: linear-gradient(135deg, rgba(0, 151, 178, 0.08) 0%, rgba(0, 151, 178, 0.03) 100%);
        border-radius: 20px;
        border: 2px solid rgba(0, 151, 178, 0.12);
        box-shadow: 0 4px 15px rgba(0, 151, 178, 0.08);
    }
    
    .contact-social h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--secondary-color);
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    
    .social-links {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .social-link {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        box-shadow: 0 6px 18px rgba(0, 151, 178, 0.3);
        position: relative;
    }
    
    .social-link::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        pointer-events: none;
    }
    
    .social-link:active {
        transform: translateY(-4px) rotate(-5deg);
        box-shadow: 0 8px 25px rgba(0, 151, 178, 0.4);
    }
    
    .social-link i {
        font-size: 1.6rem;
        color: white;
        position: relative;
        z-index: 1;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 12px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-form h3 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Map Section Mobile */
    .map-section {
        padding: 60px 0;
    }
    
    .map-section .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .map-section .section-header h2 {
        font-size: 2rem;
    }
    
    .map-section .section-header p {
        font-size: 1rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-info-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 151, 178, 0.12);
        border: 1px solid rgba(0, 151, 178, 0.08);
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .map-info-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    }
    
    .map-info-card:active {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 151, 178, 0.18);
    }
    
    .map-info-card i {
        font-size: 2rem;
        color: var(--primary-color);
        min-width: 40px;
        flex-shrink: 0;
    }
    
    .map-info-card div {
        flex: 1;
    }
    
    .map-info-card h4 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
        color: var(--secondary-color);
        font-weight: 600;
    }
    
    .map-info-card p {
        font-size: 0.95rem;
        color: var(--text-light);
        line-height: 1.6;
        margin: 0;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-section .section-header p {
        font-size: 1rem;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item {
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 151, 178, 0.12);
        border: 1px solid rgba(0, 151, 178, 0.08);
        margin-bottom: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 151, 178, 0.18);
    }
    
    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        position: relative;
    }
    
    .faq-question h4 {
        font-size: 1.05rem;
        color: var(--secondary-color);
        font-weight: 600;
        padding-right: 2rem;
        line-height: 1.5;
    }
    
    .faq-question i {
        color: var(--primary-color);
        font-size: 1rem;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-light);
    }
    
    .map-container iframe {
        height: 300px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 2.5rem;
        margin-bottom: 0;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-logo {
        height: 32px;
        margin: 0 auto;
    }
    
    .footer-tagline {
        text-align: center;
        max-width: 100%;
        font-size: 0.95rem;
    }
    
    .footer-socials {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .footer-social-link {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .footer-social-link i {
        font-size: 1.35rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-column h4 {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul {
        text-align: center;
    }
    
    .footer-column ul li {
        margin-bottom: 0.65rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .footer-column ul li a:hover {
        padding-left: 0;
        transform: translateX(3px);
    }
    
    .footer-bottom {
        padding: 2rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-separator {
        font-size: 0.75rem;
    }

    .wrapper {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Page Header Small Mobile */
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    /* Container & Spacing */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section Small Mobile */
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* Services Grid Small Mobile */
    .services {
        padding: 50px 0;
    }
    
    .services-grid {
        padding: 0;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Testimonials Small Mobile */
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-avatar {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    /* Preview Sections Small Mobile */
    .preview-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* About Preview Small */
    .about-preview .preview-content {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .about-preview .preview-text h2 {
        font-size: 1.75rem;
    }
    
    .about-preview .preview-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .about-preview .preview-highlights {
        gap: 0.85rem;
    }
    
    .about-preview .highlight-item {
        padding: 1rem;
    }
    
    .about-preview .highlight-item i {
        font-size: 1.8rem;
        min-width: 40px;
    }
    
    .about-preview .highlight-item span {
        font-size: 0.95rem;
    }
    
    .about-preview .preview-image {
        margin-top: 1rem;
    }
    
    .about-preview .preview-image img {
        max-height: 250px;
    }
    
    .about-preview .preview-text .btn {
        max-width: 300px;
    }
    
    /* Portfolio Preview Small Mobile */
    .portfolio-preview-grid {
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .preview-portfolio-image {
        height: 220px;
    }
    
    .preview-portfolio-card h4 {
        font-size: 1.1rem;
        padding: 1.25rem;
    }
    
    .preview-tag {
        padding: 0.4rem 0.85rem;
        font-size: 0.8rem;
    }
    
    /* Packages Preview Small Mobile */
    .packages-preview {
        padding: 50px 0;
    }
    
    .packages-text-content {
        padding: 0 0.75rem;
    }
    
    .packages-text-content .section-header h2 {
        font-size: 1.75rem;
    }
    
    .packages-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .packages-description:last-of-type {
        margin-bottom: 1.75rem;
    }
    
    .packages-text-content .preview-cta .btn {
        max-width: 300px;
        padding: 0.9rem 1.8rem;
    }
    
    /* Contact Preview Glassmorphism Small Mobile */
    .contact-preview-new {
        padding: 60px 0;
    }
    
    .contact-glass-content {
        padding: 0 0.75rem;
    }
    
    .contact-preview-new .section-header {
        margin-bottom: 2.5rem;
    }
    
    .contact-preview-new .section-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-preview-new .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
    
    .contact-glass-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 14px;
    }
    
    .glass-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .glass-icon i {
        font-size: 1.75rem;
    }
    
    .glass-card h3 {
        font-size: 1.2rem;
    }
    
    .glass-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .glass-link {
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
    }
    
    .contact-cta-glass {
        margin-top: 2rem;
    }
    
    .btn-glass {
        max-width: 300px;
        font-size: 0.95rem;
        padding: 0.85rem 2rem;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-top {
        gap: 2.25rem;
        padding-bottom: 2rem;
    }
    
    .footer-brand {
        gap: 1rem;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-socials {
        gap: 0.85rem;
    }
    
    .footer-social-link {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    
    .footer-social-link i {
        font-size: 1.25rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.6rem;
    }
    
    .footer-column h4::after {
        width: 22px;
    }
    
    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    .footer-separator {
        font-size: 0.65rem;
    }
    
    section {
        padding: 50px 0 !important;
    }

    /* Hero Small Mobile */
    .hero {
        height: 100vh;
        max-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        padding: 0 20px;
        height: 100%;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .hero-content {
        gap: 1.35rem;
    }
    
    .hero-buttons {
        gap: 0.7rem;
        margin-top: 0;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.93rem;
    }
    
    .hero-socials {
        margin-top: 0.6rem;
    }
    
    .hero-socials a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    /* Services Small Mobile */
    .services {
        padding: 50px 0;
    }
    
    .services-grid {
        gap: 1.25rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Testimonials Small Mobile */
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
    
    .testimonial-avatar {
        width: 55px;
        height: 55px;
    }
    
    .testimonial-avatar i {
        font-size: 1.3rem;
    }
    
    .testimonial-info h4 {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        padding-left: 1rem;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .testimonial-link,
    .testimonial-tag {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Buttons & Forms Small Mobile */
    .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        width: auto;
        min-width: 200px;
    }
    
    .btn-secondary {
        padding: 0.85rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 16px; /* Prevents iOS zoom */
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 140px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 1.85rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    /* Preview Sections Small Mobile */
    .preview-section {
        padding: 50px 0;
    }
    
    /* General Preview Text Responsive */
    .contact-preview-text h2,
    .portfolio-preview .section-header h2 {
        font-size: 1.75rem;
    }
    
    .preview-portfolio-image {
        height: 200px;
    }
    
    .preview-package-card {
        padding: 1.75rem 1.25rem;
    }
    
    /* Portfolio Page Small Mobile */
    .portfolio-section {
        padding: 50px 0;
    }
    
    .portfolio-grid {
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .portfolio-item {
        border-radius: 10px;
    }
    
    .portfolio-image {
        height: 160px;
    }
    
    .portfolio-info {
        padding: 1.25rem 0.85rem;
    }
    
    .portfolio-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .portfolio-category {
        font-size: 0.8rem;
    }
    
    .portfolio-tags {
        gap: 0.3rem;
        margin-bottom: 0.75rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.55rem;
    }
    
    .portfolio-link {
        font-size: 0.85rem;
        padding: 0.6rem 1.1rem;
    }
    
    .portfolio-details {
        padding: 0.85rem;
    }
    
    .portfolio-details h4 {
        font-size: 0.95rem;
    }
    
    .portfolio-details p {
        font-size: 0.8rem;
    }
    
    /* About Section Small Mobile */
    .about {
        padding: 50px 0;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-intro {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    .feature {
        padding: 1.25rem;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-extra {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    
    .about-extra h2 {
        font-size: 1.75rem;
        margin-top: 1.5rem;
    }
    
    .about-extra p {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }
    
    /* CTA Section Small Mobile */
    .cta-section {
        padding: 2.5rem 1.25rem;
        margin-top: 2.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-section .btn {
        max-width: 300px;
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .portfolio-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    /* Images & Media */
    .about-stats-img,
    .about-stats-video {
        max-width: 100%;
        height: auto;
        border-radius: var(--border-radius);
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Packages Small Mobile */
    .packages {
        padding: 50px 0;
    }
    
    .package-card {
        max-width: 100%;
        margin: 0;
    }

    .package-header {
        padding: 1.5rem 1.25rem;
    }

    .package-header h3 {
        font-size: 1.25rem;
    }

    .price {
        font-size: 2rem;
    }

    .package-content {
        padding: 1.5rem 1.25rem;
    }

    .package-description {
        font-size: 0.9rem;
    }
    
    .package-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    /* Contact Small Mobile */
    .contact {
        padding: 50px 0;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.75rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .contact-methods {
        gap: 1rem;
        max-width: 100%;
    }
    
    .contact-method {
        padding: 2.25rem 1.75rem;
        border-radius: 18px;
        gap: 1.25rem;
        box-shadow: 0 6px 20px rgba(0, 151, 178, 0.12);
        border: 2px solid rgba(0, 151, 178, 0.08);
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method::before {
        width: 55%;
        height: 4px;
        left: 50%;
        bottom: 0;
        top: auto;
        transform: translateX(-50%);
    }
    
    .contact-method:active::before {
        width: 65%;
        height: 5px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 16px;
        box-shadow: 0 5px 18px rgba(0, 151, 178, 0.3);
        margin: 0 auto;
    }
    
    .contact-icon::after {
        border-radius: 16px;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .contact-method:active .contact-icon {
        transform: rotate(-6deg) scale(1.06);
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
        text-align: center;
    }
    
    .contact-details p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .contact-details a::after {
        height: 2px;
    }
    
    .contact-social {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
        border-radius: 18px;
        border: 2px solid rgba(0, 151, 178, 0.1);
        box-shadow: 0 4px 12px rgba(0, 151, 178, 0.08);
    }
    
    .contact-social h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        font-weight: 700;
    }
    
    .social-links {
        gap: 1.25rem;
    }
    
    .social-link {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        box-shadow: 0 5px 15px rgba(0, 151, 178, 0.25);
    }
    
    .social-link::after {
        border-radius: 14px;
    }
    
    .social-link i {
        font-size: 1.5rem;
    }
    
    .social-link:active {
        transform: translateY(-3px) rotate(-4deg);
    }
    
    .contact-form {
        padding: 1.75rem 1.25rem;
        max-width: 100%;
    }
    
    .contact-form h3 {
        font-size: 1.75rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    /* Map Section Small Mobile */
    .map-section {
        padding: 50px 0;
    }
    
    .map-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .map-section .section-header p {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 250px;
        border-radius: 12px;
        margin-bottom: 2rem;
    }
    
    .map-info {
        gap: 0.85rem;
    }
    
    .map-info-card {
        padding: 1.25rem 1.15rem;
        border-radius: 14px;
        box-shadow: 0 3px 12px rgba(0, 151, 178, 0.1);
    }
    
    .map-info-card::before {
        width: 3px;
    }
    
    .map-info-card i {
        font-size: 1.85rem;
        min-width: 38px;
    }
    
    .map-info-card h4 {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }
    
    .map-info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* FAQ Small Mobile */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .faq-section .section-header p {
        font-size: 0.95rem;
    }
    
    .faq-container {
        padding: 0 0.75rem;
    }
    
    .faq-item {
        border-radius: 14px;
        margin-bottom: 0.85rem;
        box-shadow: 0 3px 12px rgba(0, 151, 178, 0.1);
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
        padding-right: 2rem;
    }
    
    .faq-question i {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Footer Small Mobile Continued */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-top {
        gap: 2.25rem;
        padding-bottom: 2rem;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-socials {
        gap: 0.85rem;
    }
    
    .footer-social-link {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    
    .footer-social-link i {
        font-size: 1.25rem;
    }
    
    .footer-links {
        gap: 2rem;
    }
    
    .footer-column h4 {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.6rem;
    }
    
    .footer-column h4::after {
        width: 22px;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .footer-link {
        display: inline-block;
        margin: 0 5px;
    }
    
    /* Modals Mobile */
    .modal {
        padding: 0;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 5% auto;
        border-radius: 12px;
        max-height: 90vh;
        overflow: hidden;
    }
    
    .modal-header {
        padding: 1.25rem;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .close {
        font-size: 2.2rem;
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
    
    .modal-body {
        padding: 1.5rem 1.25rem 2rem;
        max-height: calc(90vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-body h3 {
        font-size: 1.15rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .modal-body p,
    .modal-body li {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .modal-body ul,
    .modal-body ol {
        padding-left: 1.25rem;
    }

    /* Contact Very Small */
    .contact {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 1.75rem;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
        padding: 0 0.25rem;
        line-height: 1.6;
    }
    
    .contact-methods {
        gap: 0.85rem;
    }
    
    .contact-method {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        gap: 1.15rem;
        box-shadow: 0 5px 18px rgba(0, 151, 178, 0.12);
        border: 2px solid rgba(0, 151, 178, 0.08);
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method::before {
        width: 50%;
        height: 4px;
        left: 50%;
        bottom: 0;
        top: auto;
        transform: translateX(-50%);
    }
    
    .contact-method:active::before {
        width: 60%;
        height: 5px;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 151, 178, 0.3);
        margin: 0 auto;
    }
    
    .contact-icon::after {
        border-radius: 15px;
    }
    
    .contact-icon i {
        font-size: 1.85rem;
    }
    
    .contact-method:active .contact-icon {
        transform: rotate(-5deg) scale(1.05);
    }
    
    .contact-details {
        text-align: center;
        width: 100%;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
        text-align: center;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .contact-social {
        margin-top: 2.5rem;
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
        border: 2px solid rgba(0, 151, 178, 0.1);
        box-shadow: 0 4px 12px rgba(0, 151, 178, 0.08);
    }
    
    .contact-social h4 {
        font-size: 1.05rem;
        margin-bottom: 1.1rem;
        font-weight: 700;
    }
    
    .social-links {
        gap: 1.1rem;
    }
    
    .social-link {
        width: 54px;
        height: 54px;
        border-radius: 13px;
        box-shadow: 0 5px 15px rgba(0, 151, 178, 0.25);
    }
    
    .social-link::after {
        border-radius: 13px;
    }
    
    .social-link i {
        font-size: 1.45rem;
    }
    
    .social-link:active {
        transform: translateY(-3px) rotate(-4deg);
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 0.85rem;
    }
    
    /* Map Section Very Small */
    .map-section {
        padding: 40px 0;
    }
    
    .map-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .map-section .section-header p {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 220px;
        border-radius: 10px;
    }
    
    .map-info {
        gap: 0.75rem;
    }
    
    .map-info-card {
        padding: 1.1rem 1rem;
        border-radius: 12px;
        gap: 1rem;
        box-shadow: 0 3px 10px rgba(0, 151, 178, 0.1);
    }
    
    .map-info-card::before {
        width: 3px;
    }
    
    .map-info-card i {
        font-size: 1.65rem;
        min-width: 35px;
    }
    
    .map-info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .map-info-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* FAQ Very Small */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .faq-section .section-header p {
        font-size: 0.9rem;
    }
    
    .faq-container {
        padding: 0 0.5rem;
    }
    
    .faq-item {
        border-radius: 12px;
        margin-bottom: 0.75rem;
        box-shadow: 0 3px 10px rgba(0, 151, 178, 0.1);
    }
    
    .faq-question {
        padding: 1.1rem;
    }
    
    .faq-question h4 {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-right: 1.75rem;
    }
    
    .faq-question i {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 1.1rem 1.1rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .wrapper {
        height: 50px;
        margin-top: 0;
    }

    .wrapper .icon {
        width: 40px;
        height: 40px;
        margin: 5px;
    }

    /* Footer responsive legacy cleanup */
    
    /* Footer Very Small */
    .footer {
        padding: 35px 0 0;
    }
    
    .footer-top {
        gap: 2rem;
        padding-bottom: 1.75rem;
    }
    
    .footer-brand {
        gap: 1rem;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-socials {
        gap: 0.75rem;
    }
    
    .footer-social-link {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }
    
    .footer-social-link i {
        font-size: 1.2rem;
    }
    
    .footer-links {
        gap: 1.75rem;
    }
    
    .footer-column h4 {
        font-size: 0.8rem;
        margin-bottom: 0.7rem;
        padding-bottom: 0.5rem;
    }
    
    .footer-column h4::after {
        width: 20px;
        height: 1.5px;
    }
    
    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-column ul li a,
    .footer-column ul li {
        font-size: 0.75rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    .footer-legal {
        gap: 0.5rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
    }
    
    .footer-separator {
        font-size: 0.6rem;
    }
}

@media (max-width: 360px) {
    /* Extra Small Screens */
    .container {
        padding: 0 10px;
    }
    
    /* Hero Very Small */
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    /* Navigation Very Small */
    .navbar {
        width: calc(100% - 10px);
        padding: 0.6rem 1rem;
    }
    
    .logo-img {
        height: 28px;
    }
    
    /* Services Very Small */
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    /* Testimonials Very Small */
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* About Section Very Small */
    .about {
        padding: 40px 0;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-intro {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 0.25rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .about-extra {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .about-extra h2 {
        font-size: 1.6rem;
        margin-top: 1.25rem;
    }
    
    .about-extra p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 0.25rem;
    }
    
    /* Section Headers Very Small */
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    /* About Preview Very Small */
    .about-preview .preview-content {
        padding: 0 0.5rem;
        gap: 1.25rem;
    }
    
    .about-preview .preview-text h2 {
        font-size: 1.6rem;
    }
    
    .about-preview .preview-intro {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-preview .preview-highlights {
        gap: 0.75rem;
    }
    
    .about-preview .highlight-item {
        padding: 0.85rem;
        gap: 0.85rem;
    }
    
    .about-preview .highlight-item i {
        font-size: 1.6rem;
        min-width: 38px;
    }
    
    .about-preview .highlight-item span {
        font-size: 0.9rem;
    }
    
    .about-preview .preview-image {
        margin-top: 0.75rem;
    }
    
    .about-preview .preview-image img {
        max-height: 220px;
    }
    
    .about-preview .preview-text .btn {
        max-width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    /* Portfolio Preview Very Small */
    .portfolio-preview-grid {
        padding: 0 0.5rem;
        gap: 1.25rem;
    }
    
    .preview-portfolio-image {
        height: 200px;
    }
    
    .preview-portfolio-card h4 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .preview-tag {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Portfolio Page Very Small */
    .portfolio-section {
        padding: 40px 0;
    }
    
    .portfolio-grid {
        gap: 0.85rem;
        padding: 0 0.5rem;
    }
    
    .portfolio-item {
        border-radius: 8px;
    }
    
    .portfolio-image {
        height: 140px;
    }
    
    .portfolio-info {
        padding: 1rem 0.75rem;
    }
    
    .portfolio-info h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-category {
        font-size: 0.75rem;
    }
    
    .portfolio-tags {
        gap: 0.25rem;
        margin-bottom: 0.6rem;
    }
    
    .tag {
        font-size: 0.65rem;
        padding: 0.2rem 0.45rem;
    }
    
    .portfolio-link {
        font-size: 0.8rem;
        padding: 0.55rem 1rem;
    }
    
    .portfolio-details {
        padding: 0.75rem;
    }
    
    .portfolio-details h4 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    .portfolio-details p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    /* CTA Section Very Small */
    .cta-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
        border-radius: 10px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 0.85rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
        padding: 0 0.25rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .cta-section .btn {
        max-width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Packages Preview Very Small */
    .packages-text-content {
        padding: 0 0.5rem;
    }
    
    .packages-text-content .section-header h2 {
        font-size: 1.6rem;
    }
    
    .packages-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.85rem;
    }
    
    .packages-description:last-of-type {
        margin-bottom: 1.5rem;
    }
    
    .packages-text-content .preview-cta .btn {
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Contact Preview Glassmorphism Very Small */
    .contact-preview-new {
        padding: 50px 0;
    }
    
    .contact-glass-content {
        padding: 0 0.5rem;
    }
    
    .contact-preview-new .section-header {
        margin-bottom: 2rem;
    }
    
    .contact-preview-new .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-preview-new .section-header p {
        font-size: 0.9rem;
        padding: 0 0.25rem;
    }
    
    .contact-glass-grid {
        gap: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .glass-card {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }
    
    .glass-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }
    
    .glass-icon i {
        font-size: 1.5rem;
    }
    
    .glass-card h3 {
        font-size: 1.1rem;
    }
    
    .glass-card p {
        font-size: 0.9rem;
        margin-bottom: 0.85rem;
    }
    
    .glass-link {
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-cta-glass {
        margin-top: 1.75rem;
    }
    
    .btn-glass {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem 1.75rem;
    }

    .navbar {
        width: 100%;
        left: 0;
        right: 0;
        margin: 0;
    }
    
    .nav-container {
        padding: 0.9rem 1.2rem;
        max-width: 100%;
        margin: 0;
    }

    .logo-img {
        height: 35px;
        filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0, 151, 178, 0.3));
    }
    
    .nav-toggle {
        width: 42px;
        height: 42px;
    }
    
    .bar {
        width: 22px;
        height: 2.5px;
        background-color: #ffffff;
    }

    .nav-menu {
        top: 0;
        bottom: 0;
        height: 100vh;
        background: #ffffff;
        border-top: none;
        margin-top: 0;
    }
    
    .nav-menu.active {
        padding: 80px 0 2rem 0;
        box-shadow: none;
    }
    
    .nav-link {
        padding: 1.05rem 1.75rem;
        margin: 0.15rem 0;
        border-radius: 0;
        font-size: 0.96rem;
        color: #1a1a1a;
        border-left: 3px solid transparent;
    }
    
    .nav-link:hover {
        padding-left: 2rem;
        background-color: rgba(0, 52, 63, 0.08);
        border-left-color: #00343f;
        color: #00343f;
    }

    .hero {
        height: 100vh;
        max-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        padding: 0 15px;
        height: 100%;
    }
    
    .hero-content {
        gap: 1.35rem;
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.3;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-top: 0;
    }
    
    .hero-buttons .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .hero-socials {
        margin-top: 0.65rem;
    }

    .hero-image {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .back-to-top {
        display: none !important;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .package-header {
        padding: 1rem;
    }

    .package-content {
        padding: 1rem;
    }


    .wrapper .icon {
        width: 35px;
        height: 35px;
        margin: 3px;
    }
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #003d47 0%, #001f26 100%);
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Extra Content */
.about-extra {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.about-extra h2 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-extra p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Packages Info Grid */
.packages-info {
    margin-top: 4rem;
    text-align: center;
}

.packages-info h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.info-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Social */
.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Contact Form Labels */
.contact-form label {
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Active Navigation Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Logo Link */
.nav-logo a {
    display: inline-block;
}

/* Contact Details Links */
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: white;
}

/* Portfolio Filters */
.portfolio-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: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Item */
.portfolio-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hide {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

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

/* Portfolio Image */
.portfolio-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.95), rgba(0, 122, 145, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

/* Portfolio Info */
.portfolio-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.portfolio-category {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.portfolio-category i {
    margin-right: 0.5rem;
}

/* Portfolio Tags */
.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Portfolio Link */
.portfolio-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.portfolio-link i {
    margin-right: 0.5rem;
}

/* Portfolio Details */
.portfolio-details {
    padding: 1.5rem;
}

.portfolio-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.portfolio-details p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Preview Sections */
.preview-section {
    padding: 80px 0;
}

.preview-section:nth-child(odd) {
    background-color: var(--background-light);
}

.preview-section:nth-child(even) {
    background-color: white;
}

/* About Preview */
.about-preview .preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.preview-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.highlight-item span {
    font-weight: 500;
}

.preview-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Portfolio Preview */
.portfolio-preview {
    background-color: white;
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.preview-portfolio-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.preview-portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.preview-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.preview-portfolio-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.preview-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.preview-portfolio-card h4 {
    padding: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.preview-cta {
    text-align: center;
}

/* Packages Preview */
.packages-preview {
    background-color: var(--background-light);
}

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

.packages-text-content .section-header {
    margin-bottom: 2rem;
}

.packages-text-content .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.packages-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.packages-description:last-of-type {
    margin-bottom: 2.5rem;
}

.packages-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview-package-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

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

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

.preview-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.preview-package-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.preview-price {
    margin-bottom: 1.5rem;
}

.preview-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.preview-price .period {
    font-size: 0.9rem;
    color: var(--text-light);
}

.preview-features {
    list-style: none;
    text-align: left;
}

.preview-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-features i {
    color: var(--primary-color);
}

/* Contact Preview Glassmorphism Section */
.contact-preview-new {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.contact-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/toetsenbord.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 151, 178, 0.85) 0%, rgba(0, 61, 71, 0.90) 100%);
    z-index: 1;
}

.contact-glass-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-preview-new .section-header {
    margin-bottom: 4rem;
}

.contact-preview-new .section-header h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-preview-new .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.glass-icon i {
    font-size: 2.5rem;
    color: white;
}

.glass-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.glass-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.glass-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.glass-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.glass-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.glass-link:hover i {
    transform: translateX(3px);
}

.contact-cta-glass {
    text-align: center;
    margin-top: 3rem;
}

.btn-glass {
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 3rem;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.map-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

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

.map-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.map-info-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.map-info-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

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

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: var(--background-light);
    transition: var(--transition);
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

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

/* Contact Preview */
.contact-preview {
    background: linear-gradient(135deg, #003d47 0%, #001f26 100%);
    color: white;
}

.contact-preview h2 {
    color: white;
}

.contact-preview-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-preview-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-preview-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-preview-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-preview-item strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-preview-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-preview-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
}

.contact-preview-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-preview-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.contact-preview-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* SEO Content Pages */
.seo-content {
    padding: 80px 0;
    background-color: var(--background-light);
}

.seo-content > .container > h2:first-of-type {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.seo-content h2 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.seo-content h3 {
    color: var(--secondary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.seo-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.seo-list {
    list-style: none;
    margin: 2rem 0;
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.seo-list li {
    padding: 1rem 0;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.05rem;
}

.seo-list li:last-child {
    border-bottom: none;
}

.seo-list i {
    color: var(--primary-color);
    margin-top: 0.35rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.seo-packages {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    box-shadow: var(--shadow);
}

.seo-packages h3 {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 0;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.seo-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.seo-package {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
}

.seo-package:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.seo-package h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.seo-package ul {
    list-style: none;
}

.seo-package li {
    padding: 0.75rem 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

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

.seo-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 4rem 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 4rem 0;
    box-shadow: var(--shadow-hover);
}

.seo-cta h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 2rem;
}

.seo-cta p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
}

.seo-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.seo-process {
    margin: 4rem 0;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.seo-process h3 {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 0;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.process-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 151, 178, 0.3);
}

.process-step h4 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.seo-contact {
    background: linear-gradient(135deg, #003d47 0%, #001f26 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
    box-shadow: var(--shadow-hover);
}

.seo-contact h3 {
    margin-top: 0;
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.seo-contact p {
    margin-bottom: 0;
    line-height: 2;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.seo-contact strong {
    color: var(--primary-light);
}

.seo-contact i {
    color: var(--primary-light);
    margin-right: 0.75rem;
}

/* SEO Intro Section */
.seo-content > .container > p:first-of-type {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    font-size: 1.15rem;
    line-height: 2;
    border-left: 4px solid var(--primary-color);
}

/* SEO Image Section */
.seo-image-section {
    margin: 3rem 0;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.seo-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.seo-image-content h3 {
    margin-top: 0;
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.seo-image-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.seo-image-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Responsive SEO Image */
@media (max-width: 768px) {
    .seo-image-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet Responsive (992px and below) */
@media (max-width: 992px) {
    .navbar {
        width: calc(100% - 30px);
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Large Phone / Small Tablet (480px and below) */
@media (max-width: 480px) {
    .navbar {
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
        width: 100%;
        left: 0;
        right: 0;
        margin: 0;
    }
    
    .nav-container {
        padding: 0.85rem 1rem;
        max-width: 100%;
        margin: 0;
    }
    
    .logo-img {
        height: 33px;
        filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 151, 178, 0.3));
    }
    
    .nav-toggle {
        width: 40px;
        height: 40px;
    }
    
    .nav-menu {
        top: 0;
        bottom: 0;
        height: 100vh;
        background: #ffffff;
        border: none;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        box-shadow: none;
    }
    
    .nav-menu .nav-link {
        padding: 1.25rem 1.5rem;
        margin: 0;
        border: none;
        border-radius: 0;
        font-size: 1.3rem;
        color: #1a1a1a;
        max-width: 600px;
    }
    
    .nav-menu .nav-link:hover {
        padding-left: 2rem;
        background: transparent;
        color: #00343f;
    }
    
    .bar {
        width: 24px;
        height: 2.5px;
        background-color: #ffffff;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
        background-color: #1a1a1a !important;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
        background-color: #1a1a1a !important;
    }
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Reduce animations on mobile for performance */
@media (max-width: 768px) {
    *:not(.navbar):not(.nav-menu):not(.nav-toggle):not(.bar):not(.nav-link):not(.btn) {
        transition-duration: 0.2s !important;
    }
    
    .fade-in-up {
        animation: none;
    }
}

/* Hide Scrollbar */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

/* For Firefox */
* {
    scrollbar-width: none;
}

/* For IE and Edge */
body {
    -ms-overflow-style: none;
}

/* Hero Video Mobile Optimization */
@media (max-width: 768px) {
    .hero-video-background video {
        /* Better video performance on mobile */
        min-width: 100%;
        min-height: 100%;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
    
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.72);
    }
}

@media (max-width: 480px) {
    .hero-video-overlay {
        background: rgba(0, 0, 0, 0.75);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Touch Targets - Minimum 44x44px for iOS */
    a, button, .btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Portfolio Touch Optimizations */
    .portfolio-item {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    .portfolio-item:active {
        transform: scale(0.98);
    }
    
    .portfolio-link {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .tag {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    /* Smooth overlay transition on mobile */
    .portfolio-overlay {
        transition: opacity 0.3s ease;
    }
    
    .portfolio-item:active .portfolio-overlay {
        opacity: 1;
    }
    
    /* Prevent text selection on buttons/links */
    .btn, .nav-link, button {
        -webkit-tap-highlight-color: rgba(0, 151, 178, 0.2);
        -webkit-touch-callout: none;
        user-select: none;
    }
    
    /* Smooth scrolling on touch devices */
    * {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent double-tap zoom */
    * {
        touch-action: manipulation;
    }
    
    /* Better font rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Hide scrollbar on mobile menu */
    .nav-menu {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Better video playback on mobile */
    video {
        object-fit: cover;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Improve click targets spacing */
    .hero-socials a {
        margin: 0 5px;
    }
    
    
    /* Better form fields on mobile */
    input, textarea, select {
        appearance: none;
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Fix iOS Safari input zoom */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px !important;
    }
    
    /* Better modal behavior */
    .modal {
        align-items: flex-start;
        padding-top: 5vh;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    /* Stack testimonials nicely */
    .testimonials-cta p {
        font-size: 1.05rem;
        padding: 0 15px;
    }
    
    /* Better spacing for small screens */
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    /* Homepage CTA Buttons Mobile */
    .preview-cta {
        padding: 2.5rem 1.5rem;
        text-align: center;
        margin-top: 1rem;
    }
    
    .preview-cta .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0 auto;
        display: inline-block;
    }
    
    .testimonials-cta {
        text-align: center;
        padding: 2.5rem 1.5rem;
        background: rgba(0, 151, 178, 0.05);
        border-radius: 12px;
        margin: 2rem 1rem 0;
    }
    
    .testimonials-cta .btn {
        width: 100%;
        max-width: 320px;
        margin-top: 1rem;
    }
    
    /* Contact Preview Highlights Mobile */
    .contact-preview .preview-highlights {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    /* Better Image Handling Mobile */
    .preview-image img,
    .about-stats-img,
    .preview-portfolio-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: var(--border-radius);
    }
    
    /* Social Icons Hero Mobile */
    .wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .wrapper .icon {
        margin: 0;
    }
    
    /* Better button stacking */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Very Small Screens (320px) */
@media (max-width: 360px) {
    /* Extra small typography */
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.65rem;
    }
    
    /* Compact cards */
    .service-card,
    .package-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    /* Smaller buttons */
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        min-width: 180px;
    }
    
}

/* Landscape Orientation on Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        max-height: 100vh;
        padding: 0;
    }
    
    .hero-container {
        height: 100%;
        padding: 0 20px;
    }
    
    .hero-content {
        padding-top: 0;
        padding-bottom: 0;
        gap: 1rem;
    }
    
    .hero-title {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 0;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
        margin-top: 0;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.88rem;
    }
    
    .hero-socials {
        margin-top: 0.5rem;
    }
    
    .modal-content {
        max-height: 80vh;
        margin: 5vh auto;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    .scroll-indicator,
    .back-to-top,
    .modal {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
    
    * {
        box-shadow: none !important;
    }
}

