/* ============================================
   ALHAZ MARINE - STYLE.CSS
   Version: 2.1 (Fully Responsive)
   ============================================ */

/* ----- ROOT VARIABLES ----- */
:root {
    --ocean-deep: #003049;
    --ocean-mid: #0077b6;
    --ocean-light: #caf0f8;
    --accent-orange: #f77f00;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
    --text-dark: #333333;
    --transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s;
    --font-main: 'Outfit', sans-serif;
    --header-height: 80px;
    --topbar-height: 44px;
}

/* ----- RESET ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: calc(var(--topbar-height) + var(--header-height));
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--ocean-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contact span,
.top-bar-address span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-contact i,
.top-bar-address i {
    color: var(--accent-orange);
    font-size: 0.8rem;
    width: 14px;
}

.top-bar-contact a,
.top-bar-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-contact a:hover,
.top-bar-address a:hover {
    color: var(--accent-orange);
}

.top-bar-contact .sep {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 2px;
}

/* ============================================
   HEADER - FIXED
   ============================================ */
.header {
    position: fixed !important;
    top: var(--topbar-height) !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: var(--ocean-deep) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: rgba(0, 48, 73, 0.97) !important;
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

/* ----- LOGO ----- */
.logo {
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.9;
}

.logo:hover img {
    transform: scale(1.05);
    border-color: var(--accent-orange);
}

.logo img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-main span {
    color: var(--accent-orange);
    font-weight: 300;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* ----- NAVIGATION ----- */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    padding: 6px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    border-radius: 6px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 60%;
}

.nav a:hover {
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.05);
}

.nav a.active {
    color: var(--accent-orange) !important;
}

.nav a.active::after {
    width: 60%;
}

/* ----- HOME LANDING CONTENT ----- */
.home-overview {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-bg) 100%);
    position: relative;
    z-index: 3;
    margin-top: -2px;
    border-top: 0;
}

.home-overview .services-info {
    max-width: 760px;
    margin: 0 auto 45px;
}

.home-overview .services-info p {
    color: #666;
    max-width: 680px;
    margin: 0 auto;
}

.home-entry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-entry-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
    color: var(--text-dark);
    text-decoration: none;
    background: var(--white);
    border: 1px solid rgba(0, 48, 73, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 48, 73, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-entry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 48, 73, 0.15);
}

.home-entry-card-accent {
    color: var(--white);
    background: var(--ocean-deep);
    border-color: var(--ocean-deep);
}

.home-entry-card-accent .pre-title,
.home-entry-card-accent p {
    color: rgba(255, 255, 255, 0.72);
}

.home-entry-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    color: var(--white);
    font-size: 1.35rem;
    background: var(--accent-orange);
    border-radius: 14px;
}

.home-entry-card h3 {
    margin: 5px 0 10px;
    font-size: 1.55rem;
}

.home-entry-card h3 span {
    color: var(--ocean-mid);
}

.home-entry-card-accent h3 span {
    color: var(--accent-orange);
}

.home-entry-card p {
    margin-bottom: 18px;
    color: #666;
    line-height: 1.7;
}

.home-entry-link {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
}

.home-entry-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.home-entry-card:hover .home-entry-link i {
    transform: translateX(4px);
}

.home-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 28px;
    padding: 26px;
    color: var(--white);
    text-align: center;
    background: var(--ocean-mid);
    border-radius: 18px;
}

.home-trust-strip div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-trust-strip strong {
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
}

.home-trust-strip span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    padding: 35px 40px;
    background: var(--white);
    border-left: 5px solid var(--accent-orange);
    box-shadow: 0 8px 24px rgba(0, 48, 73, 0.08);
}

.home-cta h2 {
    margin: 5px 0;
    color: var(--ocean-deep);
    font-size: 1.75rem;
}

.home-cta p {
    color: #666;
}

.home-section-heading {
    margin: 72px auto 28px;
    text-align: center;
}

.home-section-heading h2 {
    margin-top: 6px;
    color: var(--ocean-deep);
    font-size: 2.2rem;
}

.home-section-heading h2 span,
.home-audience-grid h2 span {
    color: var(--ocean-mid);
}

.home-benefits-grid,
.home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-benefits-grid > div,
.home-process-grid > div {
    padding: 24px 20px;
    background: var(--white);
    border-top: 3px solid var(--accent-orange);
    box-shadow: 0 8px 24px rgba(0, 48, 73, 0.07);
}

.home-benefits-grid i,
.home-process-grid i {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    color: var(--white);
    background: var(--ocean-mid);
    border-radius: 10px;
}

.home-benefits-grid h3,
.home-process-grid h3 {
    margin-bottom: 7px;
    color: var(--ocean-deep);
    font-size: 1.05rem;
}

.home-benefits-grid p,
.home-process-grid p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.65;
}

.home-process-grid > div {
    position: relative;
    border-top: 0;
    border-bottom: 3px solid var(--ocean-mid);
}

.home-process-grid strong {
    position: absolute;
    top: 15px;
    right: 18px;
    color: rgba(0, 119, 182, 0.2);
    font-size: 1.6rem;
}

.home-audience-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 28px;
    align-items: stretch;
    margin-top: 72px;
}

.home-audience-grid > div:first-child {
    padding: 35px 0;
}

.home-audience-grid h2 {
    margin: 7px 0 12px;
    color: var(--ocean-deep);
    font-size: 2rem;
}

.home-audience-grid p {
    max-width: 620px;
    color: #666;
}

.home-audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-audience-tags span {
    padding: 9px 13px;
    color: var(--ocean-deep);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--white);
    border: 1px solid rgba(0, 48, 73, 0.12);
    border-radius: 8px;
}

.home-audience-tags i {
    margin-right: 6px;
    color: var(--accent-orange);
}

.home-coverage-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    color: var(--white);
    background: var(--ocean-deep);
}

.home-coverage-card > i {
    margin-bottom: 20px;
    color: var(--accent-orange);
    font-size: 2.5rem;
}

.home-coverage-card h3 {
    margin: 8px 0 22px;
    font-size: 1.35rem;
    line-height: 1.35;
}

.home-coverage-card a {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
}

.home-faq {
    max-width: 850px;
    margin: 72px auto 0;
}

.home-faq .home-section-heading {
    margin-top: 0;
}

.home-faq details {
    margin-bottom: 10px;
    background: var(--white);
    border: 1px solid rgba(0, 48, 73, 0.1);
    border-radius: 8px;
}

.home-faq summary {
    padding: 18px 20px;
    color: var(--ocean-deep);
    font-weight: 700;
    cursor: pointer;
}

.home-faq details p {
    padding: 0 20px 18px;
    color: #666;
    font-size: 0.9rem;
}

.home-partners {
    margin-top: 72px;
    padding: 10px 0 20px;
}

.home-partners .home-section-heading {
    max-width: 680px;
    margin-top: 0;
}

.home-partners .home-section-heading p {
    max-width: 600px;
    margin: 12px auto 0;
    color: #666;
}

.home-partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-partner-grid > div {
    padding: 24px 18px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(0, 48, 73, 0.1);
    border-radius: 12px;
}

.home-partner-grid i {
    margin-bottom: 14px;
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.home-partner-grid h3 {
    margin-bottom: 7px;
    color: var(--ocean-deep);
    font-size: 1rem;
}

.home-partner-grid p {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.6;
}

.home-brochure {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 55px;
    padding: 30px 34px;
    color: var(--white);
    background: linear-gradient(115deg, var(--ocean-deep), #005b82);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 48, 73, 0.16);
}

.home-brochure-preview {
    width: 92px;
    height: 118px;
    flex: 0 0 92px;
    overflow: hidden;
    background: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.home-brochure-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-brochure > div:nth-child(2) {
    flex: 1;
}

.home-brochure .pre-title {
    color: rgba(255, 255, 255, 0.7);
}

.home-brochure h2 {
    margin: 5px 0 7px;
    color: var(--white);
    font-size: 1.55rem;
}

.home-brochure h2 span {
    color: var(--accent-orange);
}

.home-brochure p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.home-brochure .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.brochure-gallery-section {
    margin-top: 70px;
}

.brochure-gallery-section .home-section-heading {
    margin-top: 0;
}

.brochure-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    perspective: 1200px;
}

.brochure-gallery .realtime-media-card {
    border: 1px solid #d7e0e3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1) !important;
    opacity: 0;
    animation: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brochure-gallery-section.animate-brochure .realtime-media-card {
    animation: brochureImageReveal 0.7s ease forwards;
}

.brochure-gallery .realtime-media-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 14px 28px rgba(0, 48, 73, 0.18) !important;
}

.brochure-gallery img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #d7e0e3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: none;
    transform-origin: center bottom;
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.brochure-gallery-section.animate-brochure .brochure-gallery img {
    animation: brochureImageReveal 0.7s ease forwards;
}

.brochure-gallery img:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(-2deg) scale(1.015);
    box-shadow: 0 14px 28px rgba(0, 48, 73, 0.18);
}

.brochure-gallery img:nth-child(2) { animation-delay: 0.08s; }
.brochure-gallery img:nth-child(3) { animation-delay: 0.16s; }
.brochure-gallery img:nth-child(4) { animation-delay: 0.24s; }
.brochure-gallery img:nth-child(5) { animation-delay: 0.32s; }
.brochure-gallery img:nth-child(6) { animation-delay: 0.4s; }
.brochure-gallery img:nth-child(7) { animation-delay: 0.48s; }
.brochure-gallery img:nth-child(8) { animation-delay: 0.56s; }

@keyframes brochureImageReveal {
    from { opacity: 0; transform: translateY(34px) rotateX(10deg) rotateY(-4deg); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NAV DROPDOWN - Services Menu
   ============================================ */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 6px;
    position: relative;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-dropdown .dropdown-toggle:hover::after,
.nav-dropdown.active .dropdown-toggle::after {
    width: 60%;
}

.nav-dropdown .dropdown-toggle:hover {
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown .dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.6rem;
}

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

/* ===== DROPDOWN MENU ===== */
.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 48, 73, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 780px;
    max-width: 900px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

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

.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
    pointer-events: none;
    z-index: 999;
}

.nav-dropdown .dropdown-menu > li {
    display: inline-block;
    vertical-align: top;
    width: 23%;
    margin-right: 2%;
}

.nav-dropdown .dropdown-menu > li:last-child {
    margin-right: 0;
}

.dropdown-group-title {
    display: block;
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 2px solid rgba(247, 127, 0, 0.15);
}

.dropdown-group-title i {
    margin-right: 6px;
}

.nav-dropdown .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-dropdown .dropdown-menu ul li {
    margin-bottom: 2px;
}

.nav-dropdown .dropdown-menu ul li a {
    display: block;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.2s ease;
    line-height: 1.3;
    cursor: pointer;
}

.nav-dropdown .dropdown-menu ul li a:hover {
    background: rgba(247, 127, 0, 0.12);
    color: var(--accent-orange);
    transform: translateX(4px);
}

.nav-dropdown .dropdown-menu ul li a::before {
    content: '›';
    margin-right: 6px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--accent-orange);
}

.nav-dropdown .dropdown-menu ul li a:hover::before {
    opacity: 1;
    margin-right: 10px;
}

/* ----- CTA BUTTON ----- */
.cta-header {
    flex-shrink: 0;
}

.cta-header .btn {
    padding: 10px 28px;
    font-size: 0.85rem;
    border-radius: 50px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-accent:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 127, 0, 0.35);
}

.btn-accent-full {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-accent-full:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 127, 0, 0.35);
}

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

.btn-white:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.3);
}

/* ============================================
   PAGE SECTIONS
   ============================================ */
.page-section {
    display: none;
    animation: pageFadeIn 0.5s ease forwards;
}

.page-section.active {
    display: block;
}

@keyframes pageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-content {
    padding: 60px 0 80px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-bg);
}

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

/* ============================================
   HERO
   ============================================ */
.hero-parallax {
    min-height: calc(100vh - var(--topbar-height) - var(--header-height));
    background: radial-gradient(circle at center, rgba(0, 119, 182, 0.4) 0%, rgba(0, 48, 73, 0.8) 70%), url('assets/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

#hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--topbar-height) - var(--header-height));
}

#hero-section.hidden {
    display: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 48, 73, 0.3) 0%, transparent 60%, rgba(0, 48, 73, 0.2) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.parallax-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.parallax-content h1 span {
    color: var(--accent-orange);
}

.parallax-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.play-btn {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.play-btn:hover {
    color: var(--accent-orange);
}

.play-btn i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.play-btn:hover i {
    background: var(--accent-orange);
}

/* ============================================
   WAVES
   ============================================ */
.wave-container {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.waves {
    position: relative;
    width: 100%;
    height: 12vh;
    margin-bottom: -5px;
    min-height: 80px;
    max-height: 120px;
}

.parallax-waves > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax-waves > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax-waves > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ocean-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#pageLoader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-change-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 73, 0.92);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99998;
    transition: opacity 0.4s ease;
}

.page-change-loader.active {
    display: flex;
}

.loader-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.loader-logo-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-orange);
    border-right-color: var(--ocean-mid);
    border-bottom-color: var(--accent-orange);
    border-left-color: var(--ocean-light);
    animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring-2 {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--ocean-light);
    border-right-color: var(--accent-orange);
    border-bottom-color: var(--ocean-mid);
    border-left-color: var(--accent-orange);
    animation: spinRing 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite reverse;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(247, 127, 0, 0.2);
    animation: pulseLogo 2s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.loader-text-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    animation: spinText 8s linear infinite;
}

.loader-text-ring svg {
    width: 100%;
    height: 100%;
}

.loader-text-ring text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    fill: var(--white);
    text-transform: uppercase;
}

@keyframes spinText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page-change-loader .loader-spinner {
    gap: 0;
}

.page-change-loader .loader-logo-wrapper {
    width: 110px;
    height: 110px;
}

.page-change-loader .loader-ring {
    width: 110px;
    height: 110px;
    border-width: 3px;
}

.page-change-loader .loader-ring-2 {
    width: 90px;
    height: 90px;
    border-width: 2px;
}

.page-change-loader .loader-text-ring {
    width: 150px;
    height: 150px;
}

.page-change-loader .loader-text-ring text {
    font-size: 12px;
}

.page-change-loader .loader-logo-img {
    width: 55px;
    height: 55px;
}

/* ============================================
   SERVICES - VISUAL CARDS
   ============================================ */
.pre-title {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.services-info h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-info h2 span {
    color: var(--ocean-mid);
}

.services-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
}

.services-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-visual-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
}

.service-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-visual-card .service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
}

.service-image-1 {
    background: linear-gradient(135deg, #003049 0%, #0077b6 50%, #00b4d8 100%);
}
.service-image-2 {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.service-image-3 {
    background: linear-gradient(135deg, #2d1b69 0%, #4a1a7a 50%, #6b2fa0 100%);
}
.service-image-4 {
    background: linear-gradient(135deg, #1a3a3a 0%, #2d5a5a 50%, #4a7a7a 100%);
}
.service-image-5 {
    background: linear-gradient(135deg, #4a2a1a 0%, #6b3a2a 50%, #8a4a3a 100%);
}
.service-image-6 {
    background: linear-gradient(135deg, #1a2a4a 0%, #2a4a6a 50%, #3a6a8a 100%);
}

.service-image .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

.service-image .service-icon-big {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.25);
    z-index: 1;
    transition: all 0.5s ease;
}

.service-visual-card:hover .service-image .service-icon-big {
    transform: translate(-50%, -50%) scale(1.15) rotate(10deg);
    color: rgba(255, 255, 255, 0.4);
}

.service-visual-card .service-image .service-icon-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(247, 127, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 3;
}

.service-visual-card:hover .service-image .service-icon-overlay {
    transform: scale(1.1) rotate(10deg);
    background: var(--ocean-mid);
}

.service-visual-card .service-body {
    padding: 25px 20px 22px;
    text-align: center;
}

.service-visual-card .service-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-visual-card .service-body h3 span {
    color: var(--ocean-mid);
}

.service-visual-card .service-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-visual-card .service-body .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.service-visual-card .service-body .service-features span {
    background: var(--gray-bg);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-visual-card:hover .service-body .service-features span {
    background: var(--ocean-deep);
    color: var(--white);
}

.service-visual-card .service-body .service-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.service-visual-card .service-body .service-link i {
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.service-visual-card:hover .service-body .service-link i {
    transform: translateX(5px);
}

.service-visual-card .service-body .service-link:hover {
    color: var(--ocean-mid);
}

/* ============================================
   ABOUT
   ============================================ */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-visual {
    flex: 1;
    min-width: 0;
    position: relative;
}

.about-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 30px;
    padding-right: 30px;
}

.img-main {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.img-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(247, 127, 0, 0.3);
    animation: floating 3s ease-in-out infinite;
}

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

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.experience-badge .text {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
    background: var(--white);
}

.img-sub img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.about-text {
    flex: 1;
}

.about-text .pre-title {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text h2 span {
    color: var(--ocean-mid);
}

.about-text > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    max-width: 400px;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ocean-mid);
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.quote-block {
    padding-left: 16px;
    border-left: 4px solid var(--accent-orange);
}

.quote-block .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   BANNER PARALLAX
   ============================================ */
.banner-parallax {
    padding: 100px 0;
    background: url('assets/images/crane.png') center/cover no-repeat fixed;
    position: relative;
    color: var(--white);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 48, 73, 0.8);
}

.banner-text {
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-text p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    aspect-ratio: 1/1;
    background: #e8edf2;
    min-height: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    z-index: 5;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item .gallery-overlay h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.gallery-item .gallery-overlay p {
    font-size: 0.7rem;
    opacity: 0.85;
    margin: 0;
}

.gallery-item .gallery-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.gallery-item:hover .gallery-tag {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-hero {
    border-radius: 24px;
    padding: 35px 35px;
    color: var(--white);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service-detail-hero img {
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    border: 3px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.service-detail-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.2;
}

.service-detail-hero h1 i {
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.service-detail-hero p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 550px;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.service-detail-grid .left-col {
    background: var(--gray-bg);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e8edf2;
}

.service-detail-grid .right-col {
    background: var(--ocean-deep);
    border-radius: 16px;
    padding: 25px;
    color: var(--white);
}

.service-detail-grid .right-col h3 {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.service-detail-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-detail-grid ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.service-detail-grid .right-col ul li {
    color: rgba(255,255,255,0.9);
}

.service-detail-grid ul li i {
    color: var(--accent-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.service-tags span {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
}

.service-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-cta-buttons .btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.service-back-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0 0;
}

.service-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.service-category {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-category ul li a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: var(--gray-bg) !important;
    color: var(--text-dark) !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
}

.service-category ul li a:hover {
    color: var(--accent-orange) !important;
    padding-left: 16px !important;
    background: rgba(247, 127, 0, 0.08) !important;
}

.service-category ul li a i {
    color: var(--accent-orange);
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--ocean-deep);
    border-radius: 16px;
    padding: 30px 25px;
    color: var(--white);
    text-align: center;
    margin-top: 40px;
}

.service-stats span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    display: block;
    line-height: 1;
}

.service-stats span:last-child {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-page {
    padding: 80px 0 100px;
    background: var(--gray-bg);
}

.testimonials-page .pre-title {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 12px;
    text-align: center;
}

.testimonials-page h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.testimonials-page h2 span {
    color: var(--ocean-mid);
}

.testimonials-page > .container > .text-center p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.7;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 25px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-mid), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    border-color: rgba(0, 119, 182, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
}

.testimonial-avatar {
    position: relative;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ocean-light);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar img {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.testimonial-rating {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    font-size: 0.55rem;
    color: #f5b342;
}

.testimonial-user-info {
    flex: 1;
    min-width: 0;
}

.testimonial-user-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.testimonial-user-info .designation {
    font-size: 0.78rem;
    color: var(--accent-orange);
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.testimonial-user-info .company {
    font-size: 0.75rem;
    color: #888;
    font-weight: 500;
    display: block;
    line-height: 1.3;
}

.testimonial-quote-icon {
    flex-shrink: 0;
    color: var(--accent-orange);
    font-size: 2rem;
    opacity: 0.15;
    margin-top: -4px;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    opacity: 0.30;
    transform: scale(1.1);
}

.testimonial-body {
    flex: 1;
    padding: 4px 0 12px;
}

.testimonial-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
}

.testimonial-body p::before {
    content: '\201C';
    font-size: 1.4rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-right: 2px;
}

.testimonial-body p::after {
    content: '\201D';
    font-size: 1.4rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-left: 2px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.testimonial-footer .testimonial-date {
    font-size: 0.72rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-footer .testimonial-date i {
    font-size: 0.7rem;
}

.testimonial-footer .testimonial-tag {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--ocean-light);
    color: var(--ocean-mid);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-footer .testimonial-tag {
    transform: scale(1.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ----- Tag Colors ----- */
.testimonial-footer .testimonial-tag.tag-automation { background: #e3f2fd; color: #1565c0; }
.testimonial-footer .testimonial-tag.tag-electrical { background: #fff3e0; color: #e65100; }
.testimonial-footer .testimonial-tag.tag-safety { background: #fce4ec; color: #c62828; }
.testimonial-footer .testimonial-tag.tag-repair { background: #e8f5e9; color: #2e7d32; }
.testimonial-footer .testimonial-tag.tag-underwater { background: #e0f7fa; color: #00695c; }
.testimonial-footer .testimonial-tag.tag-supply { background: #fff8e1; color: #f57f17; }
.testimonial-footer .testimonial-tag.tag-hydraulic { background: #f3e5f5; color: #6a1b9a; }
.testimonial-footer .testimonial-tag.tag-compressor { background: #e3f2fd; color: #0d47a1; }
.testimonial-footer .testimonial-tag.tag-store { background: #fff3e0; color: #e65100; }
.testimonial-footer .testimonial-tag.tag-welding { background: #fbe9e7; color: #bf360c; }
.testimonial-footer .testimonial-tag.tag-hvac { background: #e0f2f1; color: #004d40; }
.testimonial-footer .testimonial-tag.tag-agency { background: #e8eaf6; color: #1a237e; }
.testimonial-footer .testimonial-tag.tag-cleaning { background: #f1f8e9; color: #1b5e20; }
.testimonial-footer .testimonial-tag.tag-consultancy { background: #fce4ec; color: #880e4f; }
.testimonial-footer .testimonial-tag.tag-spare { background: #e0f7fa; color: #006064; }
.testimonial-footer .testimonial-tag.tag-security { background: #ede7f6; color: #4a148c; }

/* ============================================
   CONTACT
   ============================================ */
.contact-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    background: var(--ocean-deep);
    color: var(--white);
    padding: 60px;
    border-radius: 30px;
}

.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.contact-form h2 span {
    color: var(--accent-orange);
}

#creative-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: #ff6b6b;
    font-weight: 800;
}

#creative-contact input,
#creative-contact select,
#creative-contact textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-family: var(--font-main);
}

#creative-contact input::placeholder,
#creative-contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

#creative-contact select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

#creative-contact select option {
    background: var(--ocean-deep);
    color: var(--white);
    padding: 8px;
}

#creative-contact input:focus,
#creative-contact select:focus,
#creative-contact textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.12);
}

#creative-contact textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(247, 127, 0, 0.3);
}

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

.submit-btn .fa-paper-plane {
    transition: transform 0.3s ease;
}

.submit-btn:hover .fa-paper-plane {
    transform: translateX(4px) rotate(-8deg);
}

.form-status {
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    font-size: 0.9rem;
}

.form-status.success {
    display: block;
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-block i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    min-width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-block h4 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--white);
}

.info-block p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.info-block p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block p a:hover {
    color: var(--accent-orange);
}

.info-block p .whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.info-block p .whatsapp-link:hover {
    color: #1da851;
}

.info-block p .whatsapp-link i {
    background: none;
    min-width: auto;
    height: auto;
    font-size: 1rem;
    margin-right: 4px;
    display: inline-flex;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #001219;
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 38px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-logo img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.footer-brand > p {
    max-width: 330px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-quote-link {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-quote-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.footer-quote-link:hover i {
    transform: translateX(4px);
}

.footer-links {
    padding: 0;
    margin: 0;
    border: 0;
}

.footer-links-title {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-contact a,
.footer-contact span:not(.footer-links-title) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.5;
    text-decoration: none;
}

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

.footer-contact i {
    width: 18px;
    margin-right: 6px;
    color: var(--accent-orange);
    text-align: center;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.socials a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

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

.dev-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-orange);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--ocean-mid);
    transform: translateY(-4px);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* ----- PAGE-WIDE MOTION ----- */
.page-section.active .service-visual-card,
.page-section.active .service-category,
.page-section.active .gallery-item,
.page-section.active .testimonial-card,
.page-section.active .value-card,
.page-section.active .home-benefits-grid > div,
.page-section.active .home-process-grid > div,
.page-section.active .home-partner-grid > div {
    animation: cardReveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-section.active .service-visual-card:nth-child(2),
.page-section.active .service-category:nth-child(2),
.page-section.active .gallery-item:nth-child(2),
.page-section.active .testimonial-card:nth-child(2),
.page-section.active .value-card:nth-child(2),
.page-section.active .home-benefits-grid > div:nth-child(2),
.page-section.active .home-process-grid > div:nth-child(2),
.page-section.active .home-partner-grid > div:nth-child(2) { animation-delay: 0.08s; }

.page-section.active .service-visual-card:nth-child(3),
.page-section.active .service-category:nth-child(3),
.page-section.active .gallery-item:nth-child(3),
.page-section.active .testimonial-card:nth-child(3),
.page-section.active .value-card:nth-child(3),
.page-section.active .home-benefits-grid > div:nth-child(3),
.page-section.active .home-process-grid > div:nth-child(3),
.page-section.active .home-partner-grid > div:nth-child(3) { animation-delay: 0.16s; }

.page-section.active .service-visual-card:nth-child(4),
.page-section.active .service-category:nth-child(4),
.page-section.active .gallery-item:nth-child(4),
.page-section.active .testimonial-card:nth-child(4),
.page-section.active .value-card:nth-child(4),
.page-section.active .home-benefits-grid > div:nth-child(4),
.page-section.active .home-process-grid > div:nth-child(4),
.page-section.active .home-partner-grid > div:nth-child(4) { animation-delay: 0.24s; }

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(22px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.page-section.active .service-visual-card:hover,
.page-section.active .service-category:hover,
.page-section.active .gallery-item:hover,
.page-section.active .testimonial-card:hover,
.page-section.active .value-card:hover {
    animation: none;
    transform: translateY(-6px);
}

.home-cta .btn,
.home-brochure .btn,
.cta-header .btn {
    animation: ctaFloat 3s ease-in-out 1s infinite;
}

@keyframes ctaFloat {
    0%, 100% { box-shadow: 0 8px 25px rgba(247, 127, 0, 0.2); }
    50% { box-shadow: 0 12px 32px rgba(247, 127, 0, 0.42); }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* ============================================
   MESSENGER BUTTON - MOBILE ONLY
   ============================================ */

/* Hide messenger button on desktop by default */
.messenger-button {
    display: none !important;
}

/* Show messenger button only on mobile (max-width: 768px) */
@media (max-width: 768px) {
    .messenger-button {
        display: flex !important;
        position: fixed !important;
        top: auto !important;
        left: auto !important;
        bottom: 155px !important;
        right: 15px !important;
        transform: none !important;
        z-index: 1000 !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        font-size: 1.4rem !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(0, 132, 255, 0.95) !important;
        color: white !important;
        align-items: center !important;
        gap: 0 !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 15px rgba(247, 127, 0, 0.35) !important;
        backdrop-filter: blur(10px) !important;
        animation: none !important;
        border: none !important;
        cursor: pointer !important;
        max-width: calc(100% - 36px) !important;
        background: var(--accent-orange) !important;
    }
    
    .messenger-button i {
        font-size: 1.4rem !important;
    }

    .messenger-button span {
        display: none !important;
    }
    
    .messenger-button.dragging {
        cursor: grabbing;
        opacity: 0.9;
        animation: none;
    }
    
    @keyframes messengerFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
    }
}

/* Extra small devices (max-width: 425px) */
@media (max-width: 425px) {
    .messenger-button {
        top: auto !important;
        left: auto !important;
        bottom: 145px !important;
        right: 12px !important;
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        font-size: 1.2rem !important;
    }
    
    .messenger-button i {
        font-size: 1.2rem !important;
    }
}

/* ============================================
   MOBILE MENU - HAMBURGER
   ============================================ */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px 10px;
    z-index: 1001;
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
}

.hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

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

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

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- 1024px (Tablet) ----- */
@media (max-width: 1024px) {
    .top-bar { display: none; }
    :root {
        --topbar-height: 0px;
    }
    body {
        padding-top: var(--header-height);
    }
    .header {
        top: 0 !important;
    }
    
    .parallax-content h1 { font-size: 3.5rem; }
    .parallax-content p { font-size: 1.15rem; }
    
    .services-visual-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    
    .contact-wrap { grid-template-columns: 1fr; padding: 40px; }
    .contact-info { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 30px 0 0 0; }
    .info-block { flex: 1; min-width: 180px; max-width: 100%; }
    
    .about-wrapper { flex-direction: column; gap: 40px; text-align: center; }
    .about-visual { width: 100%; display: flex; justify-content: center; }
    .about-image-stack { max-width: 450px; padding-bottom: 25px; padding-right: 25px; }
    .about-text p { margin: 0 auto 30px; }
    .stats-grid { margin: 0 auto 30px; justify-content: center; }
    .quote-block { display: inline-block; text-align: left; margin: 0 auto; }
    .about-text h2 { font-size: 2.6rem; }
    
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .gallery-item.featured { grid-column: span 1; grid-row: span 1; aspect-ratio: 1/1; }
    
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    
    .service-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    
    .nav-dropdown .dropdown-menu {
        min-width: 600px;
        left: 0;
        transform: translateX(0) translateY(10px);
        padding: 16px 20px;
    }
    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }
    .nav-dropdown .dropdown-menu > li {
        width: 48%;
        margin-right: 2%;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .why-choose-section > div {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .team-section > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .global-coverage > div > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .core-values-section > div > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ----- 768px (Mobile) ----- */
@media (max-width: 768px) {
    .top-bar { display: none; }
    :root {
        --topbar-height: 0px;
        --header-height: 64px;
    }
    body {
        padding-top: var(--header-height);
    }
    .header {
        top: 0 !important;
        padding: 12px 0;
    }
    
    .hamburger-menu {
        display: flex !important;
        padding: 6px 8px !important;
    }
    
    .hamburger-menu span {
        width: 24px !important;
        height: 2.5px !important;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 5px) !important;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -5px) !important;
    }
    
    .nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(0, 48, 73, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        padding: 20px !important;
        border-radius: 0 0 20px 20px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
        z-index: 999 !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .nav.active {
        display: flex !important;
    }
    
    .nav a {
        display: block !important;
        padding: 14px 20px !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        width: 100% !important;
        text-align: center !important;
        font-size: 1rem !important;
        color: white !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }
    
    .nav a:last-child {
        border-bottom: none !important;
    }
    
    .nav a:hover {
        background: rgba(247, 127, 0, 0.15) !important;
        color: var(--accent-orange) !important;
    }
    
    .nav a.active {
        color: var(--accent-orange) !important;
    }
    
    .nav a.active::after {
        display: none !important;
    }
    
    .cta-header {
        display: none !important;
    }
    
    .logo-main { font-size: 1.1rem !important; }
    .logo-sub { font-size: 0.4rem !important; letter-spacing: 1px !important; }
    .logo img { width: 34px !important; height: 34px !important; }
    .logo { gap: 8px !important; }
    
    .parallax-content h1 { font-size: 2.2rem !important; letter-spacing: -0.5px !important; }
    .parallax-content p { font-size: 0.95rem !important; padding: 0 10px !important; }
    .hero-btns { flex-direction: column !important; gap: 14px !important; }
    .hero-btns .btn { width: 100% !important; max-width: 300px !important; text-align: center !important; }
    .play-btn { font-size: 0.85rem !important; }
    .play-btn i { width: 38px !important; height: 38px !important; font-size: 0.8rem !important; }
    .waves { height: 8vh !important; min-height: 50px !important; }
    
    .page-content { padding: 40px 0 60px; }
    .section { padding: 60px 0; }
    
    .services-info h2 { font-size: 2rem !important; }
    .services-visual-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .service-visual-card .service-image { height: 160px !important; }
    .service-visual-card .service-body { padding: 16px 14px 14px !important; }
    .service-visual-card .service-body h3 { font-size: 1rem !important; }
    
    .contact-wrap { padding: 25px 18px !important; border-radius: 20px !important; }
    .contact-form h2 { font-size: 1.6rem !important; text-align: center !important; }
    .form-row { grid-template-columns: 1fr !important; gap: 12px !important; }
    #creative-contact input, #creative-contact select, #creative-contact textarea { padding: 12px 14px !important; font-size: 0.9rem !important; border-radius: 10px !important; }
    .submit-btn { padding: 14px 24px !important; font-size: 0.95rem !important; }
    .contact-info { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; padding: 25px 0 0 0 !important; }
    .info-block { padding: 12px 14px !important; background: rgba(255,255,255,0.03) !important; border-radius: 10px !important; }
    .info-block i { width: 44px !important; height: 44px !important; min-width: 44px !important; font-size: 1.1rem !important; }
    .info-block h4 { font-size: 0.85rem !important; }
    .info-block p { font-size: 0.82rem !important; }
    
    .footer { padding: 25px 0 20px !important; }
    .footer-bottom { flex-direction: column-reverse !important; text-align: center !important; gap: 12px !important; }
    .socials { justify-content: center !important; }
    .copyright p { font-size: 0.75rem !important; }
    .developer-credit { font-size: 0.75rem !important; }
    
    .whatsapp-float { bottom: 95px !important; right: 15px !important; }
    .whatsapp-float a { width: 48px !important; height: 48px !important; font-size: 1.4rem !important; }
    
    .back-to-top { width: 44px !important; height: 44px !important; font-size: 1rem !important; bottom: 39px !important; right: 15px !important; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .gallery-item.featured { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 1/1 !important; }
    
    .testimonials-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .testimonial-card { padding: 20px 18px !important; }
    .testimonial-avatar img { width: 50px !important; height: 50px !important; }
    .testimonial-user-info h4 { font-size: 0.95rem !important; }
    .testimonial-body p { font-size: 0.88rem !important; }
    
    .service-categories-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .service-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; padding: 25px 15px !important; }
    .service-stats span:first-child { font-size: 2.2rem !important; }
    
    .service-detail-hero { 
        flex-direction: column !important; 
        text-align: center !important; 
        padding: 25px 20px !important; 
    }
    .service-detail-hero img { 
        width: 160px !important; 
        height: 120px !important; 
        margin-bottom: 15px !important; 
    }
    .service-detail-hero h1 { 
        justify-content: center !important; 
        font-size: 1.6rem !important; 
    }
    .service-detail-hero h1 i { font-size: 1.6rem !important; }
    .service-detail-hero p { margin: 0 auto !important; max-width: 100% !important; }
    .service-tags { justify-content: center !important; }
    
    .service-detail-grid { grid-template-columns: 1fr !important; gap: 25px !important; }
    .service-detail-grid .left-col, .service-detail-grid .right-col { padding: 20px 18px !important; }
    .service-detail-grid ul li { font-size: 0.85rem !important; }
    .service-cta-buttons { flex-direction: column !important; gap: 10px !important; }
    .service-cta-buttons .btn { min-width: 100% !important; padding: 12px 20px !important; font-size: 0.85rem !important; }
    .service-back-buttons { flex-direction: column !important; gap: 12px !important; padding: 15px 0 0 !important; }
    .service-back-buttons .btn { width: 100% !important; text-align: center !important; padding: 12px 20px !important; font-size: 0.85rem !important; }
    
    /* Mobile dropdown */
    .nav-dropdown { width: 100%; }
    .nav-dropdown .dropdown-toggle {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 14px 20px !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        font-size: 1rem !important;
        color: white !important;
        background: transparent !important;
    }
    .nav-dropdown .dropdown-toggle i { margin-left: 8px !important; font-size: 0.7rem !important; transition: transform 0.3s ease !important; }
    .nav-dropdown.active .dropdown-toggle i { transform: rotate(180deg) !important; }
    
    .nav-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        background: rgba(0, 48, 73, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 10px 16px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
        display: none !important;
        margin-top: 0 !important;
    }
    .nav-dropdown.active .dropdown-menu { display: block !important; }
    .nav-dropdown:hover .dropdown-menu { display: none !important; }
    .nav-dropdown.active:hover .dropdown-menu { display: block !important; }
    .nav-dropdown .dropdown-menu > li {
        display: block !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 8px !important;
    }
    .dropdown-group-title { font-size: 0.7rem !important; padding-bottom: 4px !important; margin-bottom: 4px !important; }
    .nav-dropdown .dropdown-menu ul li a { font-size: 0.75rem !important; padding: 5px 10px !important; }
    
    /* About section mobile */
    .mission-vision-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
    .mission-box, .vision-box { padding: 25px 20px !important; }
    .mission-box h3, .vision-box h3 { font-size: 1.3rem !important; }
    .why-choose-section { padding: 30px 20px !important; }
    .why-choose-section > div { grid-template-columns: 1fr !important; gap: 18px !important; }
    .core-values-section > div > div { grid-template-columns: 1fr 1fr !important; gap: 15px !important; }
    .team-section > div > div { grid-template-columns: 1fr 1fr !important; gap: 15px !important; }
    .global-coverage { padding: 30px 20px !important; }
    .global-coverage h2 { font-size: 1.6rem !important; }
    .global-coverage > div > div > div { grid-template-columns: repeat(2, 1fr) !important; }
    
    /* Banner mobile */
    .banner-parallax { padding: 60px 0 !important; background-attachment: scroll !important; }
    .banner-text h2 { font-size: 2rem !important; }
    .banner-text p { font-size: 0.95rem !important; padding: 0 15px !important; }
    
    /* Loader mobile */
    .loader-logo-wrapper { width: 85px !important; height: 85px !important; }
    .loader-ring { width: 85px !important; height: 85px !important; border-width: 2.5px !important; }
    .loader-ring-2 { width: 70px !important; height: 70px !important; border-width: 2px !important; }
    .loader-text-ring { width: 120px !important; height: 120px !important; }
    .loader-text-ring text { font-size: 10px !important; }
    .loader-logo-img { width: 42px !important; height: 42px !important; }
}

/* ----- 425px (Small Mobile) ----- */
@media (max-width: 425px) {
    .parallax-content h1 { font-size: 1.6rem !important; }
    .parallax-content p { font-size: 0.85rem !important; }
    .hero-btns .btn { padding: 12px 24px !important; font-size: 0.85rem !important; max-width: 100% !important; }
    
    .btn { padding: 12px 28px; font-size: 0.85rem; }
    
    .services-info h2 { font-size: 1.8rem !important; }
    .services-visual-grid { gap: 16px !important; }
    .service-visual-card .service-image { height: 140px !important; }
    .service-visual-card .service-body { padding: 16px 14px 14px !important; }
    .service-visual-card .service-body h3 { font-size: 1rem !important; }
    .service-visual-card .service-body p { font-size: 0.82rem !important; }
    
    .contact-wrap { padding: 18px 12px !important; border-radius: 16px !important; }
    .contact-form h2 { font-size: 1.3rem !important; }
    #creative-contact input, #creative-contact select, #creative-contact textarea { padding: 10px 12px !important; font-size: 0.85rem !important; border-radius: 8px !important; }
    .submit-btn { padding: 12px 20px !important; font-size: 0.9rem !important; }
    .info-block { padding: 10px 12px !important; gap: 10px !important; border-radius: 8px !important; }
    .info-block i { width: 38px !important; height: 38px !important; min-width: 38px !important; font-size: 0.95rem !important; border-radius: 10px !important; }
    .info-block h4 { font-size: 0.8rem !important; }
    .info-block p { font-size: 0.78rem !important; }
    
    .about-image-stack { max-width: 300px !important; padding-bottom: 16px !important; padding-right: 16px !important; }
    .experience-badge { width: 70px !important; height: 70px !important; top: 10px !important; left: 10px !important; }
    .experience-badge .number { font-size: 1.3rem !important; }
    .experience-badge .text { font-size: 0.45rem !important; }
    .img-sub { border-width: 4px !important; }
    .about-text h2 { font-size: 1.6rem !important; }
    .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
    .stat-item h3 { font-size: 1.8rem !important; }
    .quote-block .quote { font-size: 0.9rem !important; }
    
    .banner-parallax { padding: 40px 0 !important; }
    .banner-text h2 { font-size: 1.6rem !important; }
    .banner-text p { font-size: 0.85rem !important; }
    
    .whatsapp-float { bottom: 85px !important; right: 12px !important; }
    .whatsapp-float a { width: 40px !important; height: 40px !important; font-size: 1.2rem !important; }
    .back-to-top { width: 38px !important; height: 38px !important; font-size: 0.85rem !important; bottom: 35px !important; right: 12px !important; }
    
    .gallery-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    .gallery-item { aspect-ratio: 16/10 !important; min-height: 160px !important; }
    
    .service-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; padding: 20px 12px !important; }
    .service-stats span:first-child { font-size: 1.8rem !important; }
    .service-stats span:last-child { font-size: 0.75rem !important; }
    
    .service-detail-hero { padding: 20px 12px !important; }
    .service-detail-hero img { width: 120px !important; height: 100px !important; }
    .service-detail-hero h1 { font-size: 1.2rem !important; }
    .service-detail-hero h1 i { font-size: 1.3rem !important; }
    .service-detail-hero p { font-size: 0.8rem !important; }
    .service-detail-grid .left-col, .service-detail-grid .right-col { padding: 18px 14px !important; }
    .service-detail-grid .left-col h3, .service-detail-grid .right-col h3 { font-size: 1.1rem !important; }
    .service-detail-grid ul li { font-size: 0.8rem !important; }
    
    .core-values-section > div > div { grid-template-columns: 1fr !important; }
    .team-section > div > div { grid-template-columns: 1fr !important; }
    .team-section > div > div > div { padding: 18px 15px !important; }
    .team-section > div > div > div > div:first-child { width: 70px !important; height: 70px !important; font-size: 2rem !important; }
    .global-coverage > div > div > div { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .global-coverage > div > div > div span:first-child { font-size: 1.5rem !important; }
    
    .testimonials-grid { gap: 18px !important; }
    .testimonial-card { padding: 20px 16px 18px !important; border-radius: 14px !important; }
    .testimonial-header { gap: 12px !important; margin-bottom: 12px !important; }
    .testimonial-avatar img { width: 46px !important; height: 46px !important; }
    .testimonial-user-info h4 { font-size: 0.9rem !important; }
    .testimonial-user-info .designation { font-size: 0.68rem !important; }
    .testimonial-user-info .company { font-size: 0.64rem !important; }
    .testimonial-quote-icon { font-size: 1.3rem !important; }
    .testimonial-body p { font-size: 0.85rem !important; }
    .testimonial-footer { flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; padding-top: 12px !important; }
    .testimonials-page { padding: 40px 0 50px !important; }
    .testimonials-page h2 { font-size: 1.6rem !important; }
    .testimonials-page > .container > .text-center p { font-size: 0.88rem !important; margin-bottom: 25px !important; }
}

/* ----- Dark Mode Support (Optional) ----- */
@media (prefers-color-scheme: dark) {
    .testimonials-page { background: #1a1a2e; }
    .testimonial-card { background: #16213e; border-color: rgba(255, 255, 255, 0.06); }
    .testimonial-card:hover { border-color: rgba(247, 127, 0, 0.2); }
    .testimonial-user-info h4 { color: #fff; }
    .testimonial-user-info .company { color: #aaa; }
    .testimonial-body p { color: #ccc; }
    .testimonial-footer { border-top-color: rgba(255, 255, 255, 0.08); }
    .testimonial-footer .testimonial-date { color: #888; }
    .testimonial-rating { background: #1a1a2e; }
    .testimonials-page h2 { color: #fff; }
    .testimonials-page > .container > .text-center p { color: #aaa; }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-brand > p {
        max-width: 100%;
    }

    .home-entry-grid {
        grid-template-columns: 1fr;
    }

    .home-entry-card {
        padding: 24px 20px;
    }

    .home-trust-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 22px 14px;
    }

    .home-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 24px;
    }

    .home-cta .btn {
        width: 100%;
        text-align: center;
    }

    .home-benefits-grid,
    .home-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-audience-grid {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .home-audience-grid > div:first-child {
        padding: 0;
    }

    .home-partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brochure-gallery {
        grid-template-columns: 1fr;
    }

    .home-brochure {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 25px 20px;
    }

    .home-brochure > div:nth-child(2) {
        min-width: calc(100% - 80px);
    }

    .home-brochure .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 425px) {
    .home-entry-card {
        gap: 14px;
        padding: 20px 16px;
    }

    .home-entry-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 1rem;
    }

    .home-entry-card h3 {
        font-size: 1.25rem;
    }

    .home-entry-card p {
        font-size: 0.85rem;
    }

    .home-benefits-grid,
    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-section-heading {
        margin-top: 52px;
    }

    .home-section-heading h2,
    .home-audience-grid h2 {
        font-size: 1.65rem;
    }

    .home-partner-grid {
        grid-template-columns: 1fr;
    }


@media (prefers-reduced-motion: reduce) {
    .page-section.active .service-visual-card,
    .page-section.active .service-category,
    .page-section.active .gallery-item,
    .page-section.active .testimonial-card,
    .page-section.active .value-card,
    .page-section.active .home-benefits-grid > div,
    .page-section.active .home-process-grid > div,
    .page-section.active .home-partner-grid > div,
    .home-cta .btn,
    .home-brochure .btn,
    .cta-header .btn {
        animation: none;
    }

    .brochure-gallery img {
        animation: none;
        opacity: 1;
        transition: none;
    }
}
    .home-brochure {
        gap: 15px;
    }

    .home-brochure > div:nth-child(2) {
        min-width: calc(100% - 61px);
    }
}