/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    --fiji-blue: #00D9FF;
    --electric-cyan: #00F0FF;
    --neon-pink: #FF006E;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #888;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(0, 0, 0, 0.5);
}

/* Street Style Graffiti Text Effect */
@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 110, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 110, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 110, 0.75),
                    0.05em 0.025em 0 rgba(0, 255, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 110, 0.75),
                    0.05em 0.025em 0 rgba(0, 255, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 110, 0.75),
                    0.05em 0 0 rgba(0, 255, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 110, 0.75),
                    0.05em 0 0 rgba(0, 255, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 110, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 255, 0.75);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--fiji-blue), #0099cc);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    transition: opacity 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 0;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 0 100%;
    }
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

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

.section-tag {
    display: inline-block;
    color: var(--fiji-blue);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), transparent);
    border-left: 3px solid var(--fiji-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.section-tag::before {
    content: '//';
    margin-right: 10px;
    color: var(--neon-pink);
    font-weight: 900;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--white) 0%, var(--fiji-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background-color: var(--fiji-blue);
    color: var(--black);
    border-color: var(--fiji-blue);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--fiji-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 217, 255, 0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--neon-pink) 20%,
        var(--fiji-blue) 50%,
        var(--neon-pink) 80%,
        transparent
    );
    opacity: 0.5;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 30px rgba(0, 217, 255, 0.25);
    padding: 15px 0;
}

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

.logo img {
    height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.cta-link {
    background-color: var(--fiji-blue);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 3px;
}

.cta-link:hover {
    background-color: var(--white);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--fiji-blue);
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('media/suprabackground.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 90px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 217, 255, 0.15) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    padding: 20px 40px;
  
    
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge img {
    height: 80px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.3));
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px;
    line-height: 1;
    letter-spacing: 5px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-transform: uppercase;
    font-weight: 900;
}

.title-line {
    display: block;
    position: relative;
}

.title-line.highlight {
    color: var(--fiji-blue);
    font-style: italic;
    transform: skew(-5deg);
    display: inline-block;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    color: var(--light-gray);
    animation: fadeInUp 1.2s ease;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--fiji-blue);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--fiji-blue), transparent);
    margin: 0 auto;
}

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

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

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('media/suprabackground.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 90px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 217, 255, 0.15) 100%);
    z-index: 1;
}

.page-header-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-tag {
    display: inline-block;
    color: var(--fiji-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: linear-gradient(90deg, rgba(0, 217, 255, 0.1), transparent);
    border-left: 3px solid var(--fiji-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.page-tag::before {
    content: '//';
    margin-right: 10px;
    color: var(--neon-pink);
    font-weight: 900;
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow:
        0 0 20px rgba(0, 217, 255, 0.5),
        3px 3px 0px rgba(255, 0, 110, 0.3);
}

.page-header p {
    font-size: 18px;
    color: var(--light-gray);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: 120px 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 217, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-section::after {
    content: 'STREETWORX';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(0, 217, 255, 0.03);
    letter-spacing: 20px;
    font-weight: 900;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text .lead {
    font-size: 24px;
    font-weight: 600;
    color: var(--fiji-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-gray);
    line-height: 1.8;
}

.motto {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.motto-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--fiji-blue), transparent);
}

.motto p {
    font-style: italic;
    font-size: 18px;
    color: var(--fiji-blue);
    white-space: nowrap;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.3);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
    border: 2px solid var(--fiji-blue);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fiji-blue);
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===========================
   SERVICES PREVIEW
   =========================== */
.services-preview {
    padding: 120px 0;
    background-color: var(--black);
}

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

.service-card {
    background: rgba(26, 26, 26, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fiji-blue), #00a8cc);
    transition: left 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--fiji-blue);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
    background: rgba(26, 26, 26, 0.8);
}

.service-icon {
    margin-bottom: 25px;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--fiji-blue);
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.service-card:hover .service-icon {
    border-color: var(--electric-cyan);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.6);
}

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

.icon-placeholder {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--black) 100%);
    border: 2px solid var(--fiji-blue);
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--fiji-blue);
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--fiji-blue);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--light-gray);
    font-size: 14px;
}

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

/* ===========================
   SERVICES DETAIL
   =========================== */
.services-detail {
    padding: 80px 0 120px;
    background-color: var(--dark-gray);
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image .image-placeholder {
    aspect-ratio: 16/10;
    font-size: 16px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
}

.service-detail-content {
    position: relative;
}

.service-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(0, 217, 255, 0.1);
    line-height: 1;
    z-index: 0;
}

.service-detail-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-subtitle {
    color: var(--fiji-blue);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail-content > p {
    color: var(--light-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--light-gray);
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--fiji-blue);
    font-size: 18px;
}

/* ===========================
   CTA SECTIONS
   =========================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    border-top: 3px solid var(--fiji-blue);
    border-bottom: 3px solid var(--fiji-blue);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(0, 217, 255, 0.03) 50px,
        rgba(0, 217, 255, 0.03) 100px
    );
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

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

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--fiji-blue);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    text-shadow:
        0 0 10px rgba(0, 217, 255, 0.5),
        3px 3px 0px rgba(255, 0, 110, 0.3),
        -2px -2px 0px rgba(0, 255, 255, 0.2);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--black);
}

.cta-box {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border: 2px solid var(--fiji-blue);
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--light-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
    padding: 120px 0;
    background-color: var(--dark-gray);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.gallery-item .image-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

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

/* ===========================
   LOCATION SECTION
   =========================== */
.location-section {
    padding: 120px 0;
    background-color: var(--black);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.location-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 24px;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--fiji-blue);
}

.contact-item p {
    color: var(--light-gray);
    margin-bottom: 5px;
}

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

.location-map {
    height: 500px;
    border: 2px solid var(--fiji-blue);
    overflow: hidden;
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process-section {
    padding: 100px 0;
    background-color: var(--black);
}

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

.process-step {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.5);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--fiji-blue) 0%, #0099cc 100%);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid var(--fiji-blue);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step:hover .step-number::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

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

.process-step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--light-gray);
    font-size: 14px;
}

/* ===========================
   QUOTE FORM
   =========================== */
.quote-section {
    padding: 80px 0 120px;
    background-color: var(--dark-gray);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.quote-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background-color: var(--medium-gray);
    padding: 30px;
    border-left: 3px solid var(--fiji-blue);
}

.sidebar-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--fiji-blue);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item-quote {
    display: flex;
    gap: 15px;
}

.contact-item-quote .icon {
    font-size: 20px;
    min-width: 25px;
}

.contact-item-quote h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--fiji-blue);
}

.contact-item-quote p {
    font-size: 13px;
    color: var(--light-gray);
    margin-bottom: 3px;
}

.contact-item-quote a:hover {
    color: var(--fiji-blue);
}

.promo-card {
    background: linear-gradient(135deg, var(--fiji-blue) 0%, #0099cc 100%);
    border-left-color: var(--black);
}

.promo-card h3 {
    color: var(--black);
}

.promo-text {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
}

.hours-card {
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    font-size: 14px;
}

.hours-item span:first-child {
    color: var(--fiji-blue);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--light-gray);
}

.quote-form-container {
    background-color: var(--medium-gray);
    padding: 50px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--fiji-blue);
}

.form-header p {
    color: var(--light-gray);
    font-size: 15px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fiji-blue);
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--fiji-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background-color: var(--dark-gray);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--fiji-blue);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.2), 0 4px 15px rgba(0, 217, 255, 0.15);
    transform: translateY(-2px);
    background-color: rgba(26, 26, 26, 0.8);
}

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

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--light-gray);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--fiji-blue);
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--light-gray);
}

/* ===========================
   MAP SECTION
   =========================== */
.map-section {
    padding: 100px 0;
    background-color: var(--black);
}

.map-container {
    border: 3px solid var(--fiji-blue);
    overflow: hidden;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 80px 0 30px;
    border-top: 3px solid var(--fiji-blue);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(0, 217, 255, 0.02) 80px,
        rgba(0, 217, 255, 0.02) 160px
    );
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-col p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col .tagline {
    font-style: italic;
    color: var(--fiji-blue);
    font-size: 13px;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--fiji-blue);
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.footer-col h4::before {
    content: '▸';
    margin-right: 8px;
    color: var(--neon-pink);
    font-size: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    color: var(--light-gray);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--fiji-blue);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 13px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 70px;
    }

    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-sidebar {
        order: 2;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .page-header h1 {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-container {
        padding: 30px 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-number {
        font-size: 80px;
    }

    .service-detail-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .motto {
        flex-direction: column;
        text-align: center;
    }

    .motto p {
        white-space: normal;
    }
}
