/* 
   Maklen Overseas - Premium Trade Website Styles 
   Theme: Azure Blue (#0066ff) & Clean Light / Premium White
*/

:root {
    --color-primary: #0066ff;
    --color-primary-dark: #0052cc;
    --color-primary-light: #4d94ff;

    --color-dark: #1a1a1a;
    /* Kept for text/headings */
    --color-dark-surface: #ffffff;
    /* Swapped to white for "dark" surfaces in light theme */
    --color-light: #ffffff;
    --color-light-surface: #f8f9fa;
    --color-grey-surface: #f0f2f5;

    --text-main: #2c3e50;
    --text-muted: #5a6b7c;
    --text-light: #1a1a1a;
    /* Swapped for light theme */
    --text-light-muted: #666666;
    /* Darker muted for light backgrounds */

    --font-heading: 'Manrope', -apple-system, sans-serif;
    /* Using Manrope for headings too for cleaner look, or Playfair */
    --font-body: 'Manrope', -apple-system, sans-serif;

    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;

    --container-width: 1400px;
    --spacing-section: 120px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 102, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-dark);
}

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

button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.btn--primary:hover,
.btn--primary:active {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.2);
}

.btn--white {
    background-color: white;
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn--white:hover,
.btn--white:active {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn--outline-white {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    margin-left: 1rem;
}

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

/* Touch device button adjustments */
@media (hover: none) and (pointer: coarse) {
    .btn {
        padding: 18px 36px;
        font-size: 15px;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
}

.text-accent {
    color: var(--color-primary);
}

.section {
    padding: var(--spacing-section) 0;
}

/* Header - Redesigned */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
    background: transparent;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo__image {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

.header.scrolled .logo__image {
    height: 36px;
}

.logo__accent {
    color: var(--color-primary);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 10px 24px;
    background: var(--color-primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav__link--cta:hover {
    background: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.mobile-toggle {
    display: none;
}

/* Hero Section - Premium Asymmetric Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Subtle Background Pattern */
.hero__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.01) 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero__content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

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

/* Left Content */
.hero__content {
    padding-right: 40px;
}

.hero__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 30px;
    padding: 8px 20px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 50px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero__title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero__title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero__title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.hero__title-accent {
    color: var(--color-primary);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.btn--outline {
    background: transparent;
    border: 2px solid rgba(0, 102, 255, 0.2);
    color: var(--color-primary);
}

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

/* Inline Metrics */
.hero__metrics {
    display: flex;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric__value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

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

/* Right Visual */
.hero__visual {
    position: relative;
    animation: fadeIn 1s ease 0.7s forwards;
    opacity: 0;
    max-width: 600px;
}

.hero__image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 102, 255, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.hero__image-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero__image-card img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* Floating Badge */
.hero__badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatBadge 3s ease-in-out infinite;
    max-width: 280px;
}

.badge__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.badge__content {
    display: flex;
    flex-direction: column;
}

.badge__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 2px;
    white-space: nowrap;
}

.badge__subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

.hero__scroll svg {
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive Hero */
@media (max-width: 968px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero__content {
        padding-right: 0;
        text-align: center;
    }

    .hero__label,
    .hero__actions,
    .hero__metrics {
        justify-content: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__image-card {
        transform: none;
    }

    .hero__badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}

/* About Section - Premium Redesign */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about__wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
}

/* Left Side - Title & Visual */
.about__left {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    display: inline-block;
}

.about__title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--color-dark);
    margin: 0;
    letter-spacing: -0.03em;
}

.about__year {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.year-large {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
}

.year-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 5px;
}

.about__decorative-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
    margin-top: 20px;
}

/* Founders in About Section */
.about__founders {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.founders__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.founder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.founder:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
    transform: translateX(5px);
}

.founder__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.founder__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.founder__role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.founder__linkedin {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.founder:hover .founder__linkedin {
    color: #0077b5;
}

/* Right Side - Content */
.about__right {
    padding-top: 20px;
}

.about__content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about__lead {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-dark);
    margin: 0;
}

.about__divider {
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 10px 0;
    border-radius: 2px;
}

.about__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0;
}

/* Quote Card */
.about__quote-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    margin-top: 20px;
}

.quote-icon {
    color: var(--color-primary);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 30px;
}

.about__quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-dark);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.about__quote-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlights */
.about__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.highlight-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
    transform: translateY(-5px);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: var(--color-dark);
}

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

/* Responsive About Section */
@media (max-width: 968px) {
    .about__wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__left {
        position: relative;
        top: 0;
    }

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

    .year-large {
        font-size: 4rem;
    }
}

/* Legacy Section Styles (for other sections) */
.section__header {
    margin-bottom: 60px;
}

.section__line {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin-top: 20px;
}

.section__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-dark);
}

.section__subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Philosophy Section - Corporate Trade Design */
.philosophy {
    background: #f8f9fa;
    position: relative;
}

.philosophy__layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

/* Left: Introduction */
.philosophy__intro {
    position: sticky;
    top: 140px;
}

.philosophy__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-primary);
    margin-bottom: 25px;
    display: block;
}

.philosophy__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 700;
}

.philosophy__description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.philosophy__commitment {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.commitment-line {
    width: 80px;
    height: 2px;
    background: var(--color-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.commitment-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
}

/* Right: Pillars */
.philosophy__pillars {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pillar-item {
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition-fast);
}

.pillar-item:last-child {
    border-bottom: none;
}

.pillar-item:hover {
    padding-left: 30px;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.pillar-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: monospace;
    letter-spacing: 2px;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.pillar-item:hover .pillar-icon {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(0, 102, 255, 0.05);
}

.pillar-title {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.pillar-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 90%;
}

/* Responsive Philosophy */
@media (max-width: 968px) {
    .philosophy__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .philosophy__intro {
        position: relative;
        top: 0;
    }

    .pillar-item:hover {
        padding-left: 15px;
    }
}

/* Legacy styles for other sections if needed */
.bg-dark {
    background-color: var(--color-light-surface);
    color: var(--color-dark);
}

.text-white {
    color: var(--color-dark);
}

.text-white-dim {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 20px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Services Section - Premium Editorial Design */
.services {
    background: white;
    position: relative;
}

/* Services Introduction */
.services__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.services__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-primary);
    margin-bottom: 25px;
    display: block;
}

.services__title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: var(--color-dark);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.services__tagline {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-top: 40px;
}

/* Services List - Alternating Layout */
.services__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service--reverse {
    direction: rtl;
}

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

/* Service Visual */
.service__visual {
    position: relative;
    max-width: 550px;
}

.service__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 16px;
    max-height: 400px;
}

.service__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service:hover .service__image-wrapper img {
    transform: scale(1.05);
}

.service__number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: monospace;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.service--reverse .service__number {
    right: auto;
    left: -20px;
}

/* Service Details */
.service__details {
    padding: 20px 0;
}

.service__icon {
    width: 56px;
    height: 56px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    transition: var(--transition-fast);
}

.service:hover .service__icon {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(0, 102, 255, 0.03);
}

.service__title {
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service__description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.service__line {
    width: 100px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.service:hover .service__line {
    width: 150px;
}

/* Responsive Services */
@media (max-width: 968px) {
    .services__intro {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .services__tagline {
        padding-top: 0;
    }

    .services__list {
        gap: 60px;
    }

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

    .service--reverse {
        direction: ltr;
    }

    .service__number {
        top: -15px;
        right: -15px;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .service--reverse .service__number {
        right: -15px;
        left: auto;
    }
}

/* Legacy center class */
.center {
    text-align: center;
}

/* Contact Section - Premium Design */
.contact {
    background: #f8f9fa;
    position: relative;
}

.contact__layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 100px;
    align-items: start;
}

/* Left: Information */
.contact__info {
    position: sticky;
    top: 140px;
}

.contact__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-primary);
    margin-bottom: 25px;
    display: block;
}

.contact__title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-dark);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact__description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 50px;
}

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

.contact__detail-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.contact__detail-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

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

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

/* Right: Form */
.contact__form-section {
    background: white;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
}

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

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-dark);
    transition: var(--transition-fast);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.05);
}

/* Better mobile input sizing */
@media (max-width: 768px) {
    .form-field input,
    .form-field select,
    .form-field textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px;
    }
}

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

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232c3e50' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.btn--large {
    padding: 18px 40px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.btn--large svg {
    transition: transform 0.3s ease;
}

.btn--large:hover svg {
    transform: translateX(5px);
}

/* Responsive Contact */
@media (max-width: 968px) {
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact__info {
        position: relative;
        top: 0;
    }

    .contact__form-section {
        padding: 30px;
    }

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

/* Legacy styles */
.full-width {
    width: 100%;
}

/* Footer - Redesigned */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 0;
}

.footer__content {
    display: flex;
    flex-direction: column;
}

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

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

.footer__logo {
    display: inline-block;
    width: fit-content;
}

.footer__logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.footer__description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
    margin: 0;
}

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

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__heading {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 20px;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer__list a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer__list a:hover {
    color: white;
    transform: translateX(3px);
}

.footer__bottom {
    padding: 30px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

/* Animation Classes - handled by JavaScript */

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.mobile-toggle .bar {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 2px;
}

.mobile-toggle .bar:nth-child(1) {
    top: 8px;
}

.mobile-toggle .bar:nth-child(2) {
    top: 15px;
    width: 20px;
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(2) {
    top: 15px;
    width: 24px;
    transform: rotate(-45deg);
}

.mobile-toggle:hover .bar {
    background-color: var(--color-primary);
}

.header.scrolled .mobile-toggle .bar {
    background-color: var(--color-dark);
}

/* 
 * RESPONSIVE BREAKPOINTS STRATEGY:
 * - Above 1024px: Full desktop layout
 * - 769px - 1024px: Tablet layout (side-by-side maintained, slightly smaller)
 * - Below 768px: Mobile layout (stacked, single column)
 */

/* Tablet Responsive */
@media (max-width: 1024px) {
    :root {
        --spacing-section: 80px;
        --container-width: 100%;
    }

    .container {
        width: 92%;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__grid {
        gap: 60px;
    }

    .hero__visual {
        max-width: 550px;
        margin-left: auto;
    }

    .hero__image-card img {
        max-height: 450px;
    }

    .hero__badge {
        bottom: -20px;
        left: 20px;
        padding: 16px 20px;
        gap: 12px;
    }

    .badge__icon {
        width: 44px;
        height: 44px;
    }

    .badge__title {
        font-size: 0.9rem;
    }

    .badge__subtitle {
        font-size: 0.75rem;
    }

    .service__visual {
        max-width: 500px;
    }

    .service__image-wrapper {
        max-height: 380px;
    }

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

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

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

/* Tablet Small (768px - 968px) - Optimized for smaller tablets */
@media (min-width: 769px) and (max-width: 968px) {
    :root {
        --spacing-section: 70px;
    }

    .container {
        width: 90%;
    }

    /* Hero Section */
    .hero {
        padding: 90px 0 50px;
    }

    .hero__grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }

    .hero__content {
        padding-right: 15px;
    }

    .hero__title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 45px;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 260px;
    }

    .btn--outline-white {
        margin-left: 0;
    }

    .hero__metrics {
        gap: 30px;
    }

    .metric__value {
        font-size: 1.3rem;
    }

    .metric__label {
        font-size: 0.8rem;
    }

    .hero__visual {
        max-width: 100%;
    }

    .hero__image-card {
        border-radius: 16px;
    }

    .hero__image-card img {
        max-height: 380px;
    }

    .hero__badge {
        bottom: -12px;
        left: 12px;
        padding: 14px 18px;
        gap: 12px;
    }

    .badge__icon {
        width: 42px;
        height: 42px;
    }

    .badge__title {
        font-size: 0.88rem;
    }

    .badge__subtitle {
        font-size: 0.72rem;
    }

    /* About Section */
    .about__wrapper {
        grid-template-columns: 260px 1fr;
        gap: 45px;
    }

    .about__title {
        font-size: 2.5rem;
    }

    .year-large {
        font-size: 4rem;
    }

    .about__lead {
        font-size: 1.25rem;
    }

    .about__text {
        font-size: 1rem;
    }

    .about__quote-card {
        padding: 35px 30px;
    }

    .about__quote-text {
        font-size: 1.5rem;
    }

    .highlight-item {
        padding: 20px;
    }

    /* Philosophy Section */
    .philosophy__layout {
        grid-template-columns: 280px 1fr;
        gap: 45px;
    }

    .philosophy__title {
        font-size: 2.5rem;
    }

    .philosophy__description {
        font-size: 1.05rem;
    }

    .pillar-item {
        padding: 40px 0;
    }

    .pillar-title {
        font-size: 1.6rem;
    }

    .pillar-description {
        font-size: 0.98rem;
    }

    .pillar-icon {
        width: 52px;
        height: 52px;
    }

    /* Services Section */
    .services__intro {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 70px;
    }

    .services__title {
        font-size: 2.8rem;
    }

    .services__tagline {
        font-size: 1.05rem;
    }

    .services__list {
        gap: 55px;
    }

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

    .service__visual {
        max-width: 100%;
    }

    .service__image-wrapper {
        max-height: 320px;
    }

    .service__title {
        font-size: 1.6rem;
    }

    .service__description {
        font-size: 0.98rem;
    }

    .service__icon {
        width: 52px;
        height: 52px;
    }

    .service__number {
        width: 65px;
        height: 65px;
        font-size: 1.3rem;
        top: -12px;
        right: -12px;
    }

    .service--reverse .service__number {
        left: -12px;
        right: auto;
    }

    /* Contact Section */
    .contact__layout {
        grid-template-columns: 280px 1fr;
        gap: 45px;
    }

    .contact__title {
        font-size: 2.5rem;
    }

    .contact__description {
        font-size: 1.05rem;
    }

    .contact__form-section {
        padding: 35px 30px;
    }

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

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 13px;
    }

    /* Footer */
    .footer {
        padding: 70px 0 0;
    }

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

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

/* Mobile Responsive (below 768px only) */
@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .container {
        width: 88%;
    }

    /* Header Mobile */
    .header {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 16px 0;
    }

    .header.scrolled {
        padding: 12px 0;
    }

    .logo__image {
        height: 36px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav.active {
        display: flex;
        opacity: 1;
    }

    .nav__list {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    .nav__link--cta {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 90px 0 50px;
    }

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

    .hero__content {
        padding-right: 0;
        text-align: center;
    }

    .hero__label {
        margin-left: auto;
        margin-right: auto;
        font-size: 12px;
        padding: 7px 18px;
    }

    .hero__title {
        font-size: 2.75rem;
        margin-bottom: 25px;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 14px;
        align-items: center;
        margin-bottom: 50px;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 32px;
    }

    .btn--outline-white {
        margin-left: 0;
    }

    .hero__metrics {
        justify-content: center;
        gap: 35px;
        flex-wrap: wrap;
        padding-top: 35px;
    }

    .metric {
        min-width: 100px;
        text-align: center;
    }

    .hero__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image-card {
        transform: none;
        border-radius: 16px;
    }

    .hero__badge {
        position: static;
        transform: none;
        margin: 20px auto 0;
        max-width: 100%;
        animation: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .hero__scroll {
        display: none;
    }

    /* About Mobile */
    .about__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about__left {
        position: relative;
        top: 0;
        text-align: center;
    }

    .about__label {
        display: inline-block;
    }

    .about__title {
        font-size: 2.75rem;
    }

    .about__year {
        align-items: center;
    }

    .year-large {
        font-size: 4.5rem;
    }

    .about__decorative-line {
        margin-left: auto;
        margin-right: auto;
        max-width: 200px;
    }

    .about__founders {
        text-align: left;
    }

    .about__lead {
        font-size: 1.3rem;
    }

    .about__text {
        font-size: 1.05rem;
    }

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

    /* Philosophy Mobile */
    .philosophy__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy__intro {
        position: relative;
        top: 0;
        text-align: center;
    }

    .philosophy__title {
        font-size: 2.75rem;
    }

    .philosophy__description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 50px;
    }

    .philosophy__commitment {
        max-width: 600px;
        margin: 0 auto;
    }

    .commitment-line {
        margin-left: auto;
        margin-right: auto;
    }

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

    .pillar-item {
        padding: 40px 0;
    }

    .pillar-item:hover {
        padding-left: 10px;
    }

    .pillar-title {
        font-size: 1.65rem;
    }

    .pillar-description {
        font-size: 1rem;
    }

    /* Services Mobile */
    .services__intro {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 70px;
        text-align: center;
    }

    .services__title {
        font-size: 2.75rem;
    }

    .services__tagline {
        padding-top: 0;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .services__list {
        gap: 60px;
    }

    .service {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service--reverse {
        direction: ltr;
    }

    .service__visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .service__number {
        top: -10px;
        right: -10px;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .service--reverse .service__number {
        right: -10px;
        left: auto;
    }

    .service__title {
        font-size: 1.65rem;
    }

    .service__description {
        font-size: 1rem;
    }

    /* Contact Mobile */
    .contact__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact__info {
        position: relative;
        top: 0;
        text-align: center;
    }

    .contact__title {
        font-size: 2.75rem;
    }

    .contact__description {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 50px;
    }

    .contact__form-section {
        padding: 40px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 15px;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 0;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 50px;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__logo {
        margin: 0 auto;
    }

    .footer__description {
        margin: 0 auto;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer__column {
        text-align: center;
    }

    .footer__bottom {
        padding: 25px 0;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    :root {
        --spacing-section: 50px;
    }

    .container {
        width: 90%;
    }

    /* Typography */
    .hero__title {
        font-size: 2rem;
    }

    .about__title,
    .philosophy__title,
    .services__title,
    .contact__title {
        font-size: 2rem;
    }

    .hero__subtitle,
    .about__lead,
    .philosophy__description,
    .services__tagline,
    .contact__description {
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }

    .btn--large {
        padding: 16px 32px;
        font-size: 14px;
    }

    /* Hero */
    .hero__metrics {
        gap: 20px;
    }

    .metric__value {
        font-size: 1.2rem;
    }

    .metric__label {
        font-size: 0.75rem;
    }

    /* Hero Badge - Compact for small screens */
    .hero__badge {
        padding: 14px 16px;
        gap: 10px;
        border-radius: 12px;
    }

    .badge__icon {
        width: 40px;
        height: 40px;
    }

    .badge__icon svg {
        width: 20px;
        height: 20px;
    }

    .badge__title {
        font-size: 0.85rem;
    }

    .badge__subtitle {
        font-size: 0.7rem;
    }

    /* About */
    .year-large {
        font-size: 3rem;
    }

    .about__quote-card {
        padding: 30px 20px;
    }

    .about__quote-text {
        font-size: 1.3rem;
    }

    /* Philosophy */
    .pillar-header {
        gap: 20px;
    }

    .pillar-icon {
        width: 48px;
        height: 48px;
    }

    .pillar-title {
        font-size: 1.3rem;
    }

    .pillar-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Services */
    .service__title {
        font-size: 1.3rem;
    }

    .service__description {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact__form-section {
        padding: 30px 20px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 14px;
        font-size: 16px;
    }

    /* Footer */
    .footer__links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer__logo img {
        height: 36px;
    }
}