/* ==========================================
   WShips Inspection & Services
   Premium Maritime Website Stylesheet
   ========================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-primary: #0a4d8c;
    --color-primary-dark: #063663;
    --color-primary-light: #1a6cb8;
    --color-accent: #f0a500;
    --color-accent-light: #ffc947;
    --color-dark: #0a1628;
    --color-dark-lighter: #12253d;
    --color-dark-card: #152840;
    --color-text: #e8eef5;
    --color-text-muted: #8fa2b7;
    --color-white: #ffffff;
    --color-success: #10b981;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    --gradient-dark: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(240, 165, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--color-dark);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px rgba(240, 165, 0, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

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

.btn-light:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-svg {
    width: 60px;
    height: 60px;
    color: var(--color-white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-white);
    line-height: 1;
    text-transform: uppercase;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent);
    font-style: italic;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.98) 0%, rgba(10, 77, 140, 0.7) 50%, rgba(10, 22, 40, 0.98) 100%),
        url('assets/port-bg.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) desaturate(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(240, 165, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(10, 77, 140, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-icon {
    font-size: 1.125rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    color: var(--color-white);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--color-accent);
    text-shadow: 0 0 60px rgba(240, 165, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/port-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.05;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

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

.about-intro p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-intro .lead {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 30px;
}

.about-intro p:not(.lead) {
    color: rgba(255, 255, 255, 0.8);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.highlight-card:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.15) contrast(1.1) saturate(1.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(10, 77, 140, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
}

.exp-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--color-dark-lighter);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/aerial-port-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.04;
    filter: grayscale(1);
    pointer-events: none;
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

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

.service-card {
    position: relative;
    padding: 40px;
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

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

.service-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(180deg, rgba(240, 165, 0, 0.05) 0%, var(--color-dark-card) 100%);
}

.service-card.featured::before {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: var(--gradient-accent);
    color: var(--color-dark);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.service-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--color-text);
}

.service-features li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
}

/* ==========================================
   Certifications Section
   ========================================== */
.certifications {
    background: var(--color-dark-lighter);
    position: relative;
    overflow: hidden;
}

.certifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/hull-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.04;
    filter: grayscale(1);
    pointer-events: none;
    z-index: 0;
}

.certifications .container {
    position: relative;
    z-index: 1;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.cert-card {
    padding: 32px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
}

.cert-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.cert-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-accent);
}

.cert-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cert-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.banner-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.banner-content p {
    color: var(--color-text-muted);
    max-width: 500px;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    position: relative;
    padding: 120px 0;
    background: var(--color-dark);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/port-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.5);
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.98), rgba(10, 22, 40, 0.9));
    z-index: 1;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--gradient-glass);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.info-card:hover {
    border-color: var(--color-accent);
    transform: translateX(5px);
}

.info-card.whatsapp:hover {
    border-color: #25d366;
}

.info-card.linkedin:hover {
    border-color: #0077b5;
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--color-dark-card);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-card.whatsapp .info-icon {
    background: rgba(37, 211, 102, 0.1);
}

.info-card.whatsapp .info-icon svg {
    fill: #25d366;
}

.info-card.linkedin .info-icon {
    background: rgba(0, 119, 181, 0.1);
}

.info-card.linkedin .info-icon svg {
    fill: #0077b5;
}

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

.email-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}

.email-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 8px;
}

.email-label {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p,
.info-content a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.info-content a:hover {
    color: var(--color-accent);
}

.info-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: var(--color-dark);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--color-accent);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 32px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

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

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all var(--transition-fast);
    background: var(--color-dark);
    padding: 0 4px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--color-accent);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

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

.contact-form .btn {
    margin-top: 8px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--color-dark-lighter);
    padding: 80px 0 32px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 300px;
}

.footer-links h4,
.footer-services h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services li {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--color-accent);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--color-text-muted);
    transition: fill var(--transition-normal);
}

.footer-social a:hover svg {
    fill: var(--color-dark);
}

/* ==========================================
   Animations
   ========================================== */
@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);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

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

    .about-grid {
        gap: 60px;
    }

    .cert-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .banner-content p {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-dark-lighter);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .about-name h3 {
        font-size: 2rem;
    }

    .about-image {
        order: -1;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 140px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        line-height: 1.6;
    }

    .about-name h3 {
        font-size: 1.75rem;
    }

    .about-name {
        margin-bottom: 30px;
        padding-left: 15px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .scroll-indicator {
        display: none;
    }

    .service-card {
        padding: 30px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .cert-banner {
        padding: 32px 24px;
    }
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    position: relative;
    background: var(--color-dark);
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/hull-bg.png') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-dark-card);
    border: 1px solid var(--color-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

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

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

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-overlay span {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Name Styling */
.about-name {
    margin-bottom: 40px;
    border-left: 5px solid var(--color-accent);
    padding: 10px 0 10px 25px;
    background: linear-gradient(to right, rgba(162, 123, 67, 0.05), transparent);
}

.about-name h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.about-name .lead {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-name h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-name h3 {
        font-size: 1.8rem;
    }

    .about-name {
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .experience-badge {
        bottom: -20px;
        left: 20px;
        padding: 15px 20px;
    }

    .exp-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .about-name h3 {
        font-size: 1.6rem;
    }
}