/*====================================
RESET
====================================*/

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

/*====================================
ROOT
====================================*/

:root {
    --primary: #F9A106;
    --secondary: #1565D8;
    --dark: #050505;
    --dark-light: #080808;
    --text: #ffffff;
    --text-light: #d4d4d4;
    --transition: .35s ease;
}

/*====================================
GLOBAL
====================================*/

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(92%, 1200px);
    margin: 0 auto;
}
/*====================================
HEADER
====================================*/

.about-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
    transition: var(--transition);
}

.about-header.scrolled {
    background: rgba(5, 5, 5, .92);
    backdrop-filter: blur(16px);
}

.header-container {
    width: min(92%, 1200px);
    margin: 0 auto;

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

/* Logo */

.logo img {
    width: 80px;
}

.logo.hide {
    opacity: 0;
    visibility: hidden;
}

/* Desktop Navigation */

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.desktop-nav a {
    color: #fff;
    font-weight: 600;
    transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

/* Dropdown */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;

    min-width: 220px;

    background: #111;

    border-radius: 14px;

    list-style: none;

    padding: 8px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu a {
    display: block;
}

/* Hamburger */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    border: none;
    background: none;
}

.menu-toggle span {
    display: block;

    width: 30px;
    height: 3px;

    margin: 6px auto;

    background: #fff;

    transition: var(--transition);
}

/*====================================
FULL SCREEN MOBILE MENU
====================================*/

.mobile-menu {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #050505;

    transform: translateX(100%);
    transition: transform .45s ease;

    z-index: 2000;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Close Button */

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;

    background: none;
    border: none;

    color: #fff;
    font-size: 2rem;

    cursor: pointer;
}

/* Menu */

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 24px 0;
}

.mobile-menu a {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    transition: .3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

/*====================================
MOBILE SUBMENU
====================================*/

.mobile-dropdown {
    width: 100%;
}

.submenu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    background: none;
    border: none;

    color: #fff;
    font-size: 2rem;
    font-weight: 700;

    cursor: pointer;
}

.mobile-submenu {
    display: none;

    margin-top: 18px;
    list-style: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    margin: 12px 0;
}

.mobile-submenu a {
    font-size: 1.15rem;
    color: #bdbdbd;
}

.mobile-submenu a:hover {
    color: var(--primary);
}

/*====================================
RESPONSIVE HEADER
====================================*/

@media (max-width: 992px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

}

@media (min-width: 993px) {

    .mobile-menu {
        display: none;
    }

}

/*====================================
SERVICES HERO
====================================*/

.services-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
}

/*====================================
BACKGROUND
====================================*/

.services-background,
.services-overlay {
    position: absolute;
    inset: 0;
}

.services-background {
    z-index: 0;
}

.services-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.services-overlay {
    z-index: 1;
    background: linear-gradient(
        rgba(0, 0, 0, .65),
        rgba(0, 0, 0, .88)
    );
}

/*====================================
CONTENT
====================================*/

.services-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 22px;

    border: 1px solid rgba(249, 161, 6, .35);
    border-radius: 50px;

    background: rgba(249, 161, 6, .12);

    color: var(--primary);
    letter-spacing: 3px;
    font-weight: 600;
}

.services-content h1 {
    margin-bottom: 35px;

    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: .95;
}

.services-content h1 span {
    color: var(--secondary);
}

.services-content p {
    max-width: 700px;
    margin-bottom: 50px;

    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.9;
}

/*====================================
BUTTONS
====================================*/

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 15px 34px;

    border-radius: 50px;

    font-weight: 700;

    transition: .35s ease;
}

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

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    color: #fff;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(249,161,6,.12);
}

/*====================================
LIGHT EFFECTS
====================================*/

.hero-light {
    position: absolute;
    z-index: 2;

    border-radius: 50%;
    filter: blur(120px);
    opacity: .22;
}

.light-one {
    top: 5%;
    left: -80px;

    width: 280px;
    height: 280px;

    background: var(--secondary);
}

.light-two {
    right: -100px;
    bottom: -80px;

    width: 300px;
    height: 300px;

    background: var(--primary);
}

/*====================================
FLOATING TAGS
====================================*/

.floating-tags {
    position: absolute;
    inset: 0;

    pointer-events: none;
    z-index: 2;
}

.floating-tags span {
    position: absolute;

    color: rgba(255,255,255,.08);

    font-size: clamp(1rem,2vw,2rem);
    font-weight: 700;

    animation: floatWords 10s ease-in-out infinite;
}

.floating-tags span:nth-child(1){top:15%;left:8%;}
.floating-tags span:nth-child(2){top:20%;right:10%;}
.floating-tags span:nth-child(3){top:45%;left:5%;}
.floating-tags span:nth-child(4){bottom:22%;right:15%;}
.floating-tags span:nth-child(5){bottom:12%;left:22%;}
.floating-tags span:nth-child(6){top:60%;right:38%;}
.floating-tags span:nth-child(7){top:8%;right:35%;}
.floating-tags span:nth-child(8){bottom:35%;left:45%;}

/*====================================
ANIMATIONS
====================================*/

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

@keyframes floatWords {

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

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

}

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

@media (max-width: 992px) {

    .services-content {
        margin: auto;
        text-align: center;
    }

    .services-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

}

@media (max-width: 768px) {

    .services-hero {
        padding: 120px 20px 100px;
    }

    .services-content h1 {
        line-height: 1.05;
    }

    .services-content p {
        font-size: 1rem;
    }

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

    .hero-btn {
        width: 100%;
        max-width: 320px;
    }

    .floating-tags span {
        font-size: .85rem;
    }

}
/*====================================
  OUR SERVICES TIMELINE
====================================*/

.services-timeline {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/*====================================
  Timeline Header
====================================*/

.timeline-header {
    max-width: 850px;
    margin: 0 auto 100px;
    text-align: center;
}

.timeline-header h2 {
    margin: 20px 0;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.1;
}

.timeline-header p {
    max-width: 700px;
    margin: auto;
    color: #d6d6d6;
    line-height: 2;
}

/*====================================
  Timeline Service Layout
====================================*/

.timeline-service {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.timeline-service.reverse {
    direction: rtl;
}

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

/*====================================
  Timeline Image
====================================*/

.timeline-image {
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.timeline-image img {
    width: 100%;
    height: 650px;
    display: block;
    object-fit: cover;
    transition: transform .8s ease;
}

.timeline-image:hover img {
    transform: scale(1.08);
}

/*====================================
  Timeline Content
====================================*/

.timeline-content {
    max-width: 560px;
}

.timeline-content .service-number {
    display: block;
    margin-bottom: 10px;
    font-size: 5rem;
    font-weight: 800;
    color: #F9A106;
    opacity: .25;
    transition: opacity .3s ease;
}

.timeline-content h3 {
    margin-bottom: 25px;
    font-size: 2.4rem;
    transition: color .3s ease;
}

.timeline-content p {
    margin-bottom: 35px;
    color: #d3d3d3;
    line-height: 2;
}

/*====================================
  Feature List
====================================*/

.timeline-content ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline-content li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
}

.timeline-content li::before {
    content: "";
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #F9A106;
}

/*====================================
  Hover Effects
====================================*/

.timeline-service:hover .service-number {
    opacity: 1;
}

.timeline-service:hover h3 {
    color: #F9A106;
}

/*====================================
  Tablet
====================================*/

@media (max-width: 992px) {

    .timeline-service,
    .timeline-service.reverse {
        grid-template-columns: 1fr;
        gap: 45px;
        direction: ltr;
    }

    .timeline-image img {
        height: 450px;
    }

    .timeline-content {
        max-width: 100%;
    }
}

/*====================================
  Mobile
====================================*/

@media (max-width: 768px) {

    .services-timeline {
        padding: 90px 20px;
    }

    .timeline-header {
        margin-bottom: 70px;
    }

    .timeline-service {
        margin-bottom: 90px;
    }

    .timeline-image img {
        height: 300px;
    }

    .timeline-content .service-number {
        font-size: 3rem;
    }

    .timeline-content h3 {
        font-size: 2rem;
    }

    .timeline-content p {
        font-size: 1rem;
    }
}

/*====================================
  OUR PROCESS
====================================*/

.process-section {
    padding: 120px 0;
    background: #080808;
    overflow: hidden;
}

/*====================================
  Section Header
====================================*/

.process-header {
    max-width: 800px;
    margin: 0 auto 90px;
    text-align: center;
}

.process-header h2 {
    margin: 20px 0;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.1;
}

.process-header p {
    color: #d4d4d4;
    line-height: 2;
}

/*====================================
  Timeline Layout
====================================*/

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* Connecting Line */

.process-timeline::before {
    content: "";
    position: absolute;
    top: 45px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
}

/*====================================
  Process Card
====================================*/

.process-step {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    transition: all .4s ease;
}

/* Timeline Dot */

.process-step::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 40px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #F9A106;
    box-shadow: 0 0 25px rgba(249, 161, 6, .8);
}

/* Hover */

.process-step:hover {
    transform: translateY(-12px);
    border-color: #F9A106;
}

/*====================================
  Typography
====================================*/

.step-number {
    display: block;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: #1565D8;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.process-step p {
    color: #d3d3d3;
    line-height: 1.8;
}

/*====================================
  Tablet
====================================*/

@media (max-width: 992px) {

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

    .process-timeline::before {
        display: none;
    }
}

/*====================================
  Mobile
====================================*/

@media (max-width: 768px) {

    .process-section {
        padding: 90px 20px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-step {
        padding: 30px 25px;
    }

    .step-number {
        font-size: 2.4rem;
    }

    .process-step h3 {
        font-size: 1.35rem;
    }
}

/*====================================
  WHO WE SERVE
====================================*/

.who-we-serve {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/*====================================
  Background Glow
====================================*/

.serve-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .18;
}

.glow-left {
    top: -100px;
    left: -120px;
    background: #1565D8;
}

.glow-right {
    right: -120px;
    bottom: -100px;
    background: #F9A106;
}

/*====================================
  Section Header
====================================*/

.serve-header {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

.serve-header h2 {
    margin: 20px 0;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.1;
}

.serve-header p {
    color: #d5d5d5;
    line-height: 2;
}

/*====================================
  Grid Layout
====================================*/

.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/*====================================
  Cards
====================================*/

.serve-card {
    padding: 35px 25px;
    text-align: center;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 22px;
    transition: all .4s ease;
}

.serve-card:hover {
    transform: translateY(-10px);
    border-color: #F9A106;
    box-shadow: 0 20px 50px rgba(249, 161, 6, .15);
}

.serve-card i {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #F9A106;
}

.serve-card h3 {
    font-size: 1.15rem;
    line-height: 1.5;
}

/*====================================
  Highlight Card
====================================*/

.serve-card.highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1565D8, #0D47A1);
}

.serve-card.highlight h3 {
    margin-bottom: 25px;
}

.serve-card.highlight a {
    padding: 14px 30px;
    border-radius: 40px;
    background: #F9A106;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.serve-card.highlight a:hover {
    background: #ffb733;
    transform: translateY(-2px);
}

/*====================================
  Tablet
====================================*/

@media (max-width: 992px) {

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

/*====================================
  Mobile
====================================*/

@media (max-width: 768px) {

    .who-we-serve {
        padding: 90px 20px;
    }

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

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

    .serve-card {
        padding: 30px;
    }

    .serve-card h3 {
        font-size: 1.1rem;
    }
}

/*====================================
  FAQ SECTION
====================================*/

.faq-section {
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

/*====================================
  FAQ Header
====================================*/

.faq-header {
    max-width: 800px;
    margin: 0 auto 70px;
    text-align: center;
}

.faq-header h2 {
    margin: 25px 0;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.1;
}

.faq-header h2 span {
    color: #F9A106;
}

.faq-header p {
    max-width: 600px;
    margin: auto;
    color: #cfcfcf;
    line-height: 1.9;
}

/*====================================
  FAQ Wrapper
====================================*/

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

/*====================================
  FAQ Item
====================================*/

.faq-wrapper details {
    margin-bottom: 20px;
    overflow: hidden;

    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;

    transition: border-color .3s ease;
}

.faq-wrapper details[open] {
    border-color: #F9A106;
}

/*====================================
  Question
====================================*/

.faq-wrapper summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 28px;

    list-style: none;
    cursor: pointer;

    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-wrapper summary::-webkit-details-marker {
    display: none;
}

/*====================================
  Icon
====================================*/

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: #F9A106;
    color: #050505;

    font-size: 1.5rem;
    font-weight: 700;

    transition: transform .3s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

/*====================================
  Answer
====================================*/

.faq-wrapper p {
    margin: 0;
    padding: 0 28px 28px;

    color: #cfcfcf;
    line-height: 1.9;
}

/*====================================
  Tablet
====================================*/

@media (max-width: 992px) {

    .faq-section {
        padding: 100px 20px;
    }

}

/*====================================
  Mobile
====================================*/

@media (max-width: 768px) {

    .faq-header {
        margin-bottom: 45px;
    }

    .faq-header h2 {
        font-size: 2.5rem;
    }

    .faq-wrapper summary {
        padding: 22px;
        gap: 15px;
        font-size: 1rem;
    }

    .faq-wrapper p {
        padding: 0 22px 22px;
        font-size: .95rem;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

}

/*====================================
  CONTACT SECTION
====================================*/

.contact-section {
    position: relative;
    padding: 140px 0;
    background: #050505;
    overflow: hidden;
}

/*====================================
  Background Overlay
====================================*/

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(21, 101, 216, 0.13),
        transparent 60%
    );
}

/*====================================
  Layout
====================================*/

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

    width: min(92%, 1200px);
    margin: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 70px;
}

/*====================================
  Contact Information
====================================*/

.contact-info h2 {
    margin: 30px 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .95;
}

.contact-info p {
    margin-bottom: 50px;
    color: #d4d4d4;
    line-height: 1.9;
}

/*====================================
  Contact Details
====================================*/

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-box {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-box h4 {
    margin-bottom: 10px;
    color: #F9A106;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
    word-break: break-word;
    transition: color .3s ease;
}

.contact-box a:hover {
    color: #F9A106;
}

/*====================================
  Contact Form
====================================*/

.contact-form {
    padding: 45px;

    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px;
}

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

/*====================================
  Inputs
====================================*/

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;

    background: #121212;
    color: #fff;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 15px;

    outline: none;

    font-size: 1rem;
    transition: all .3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #F9A106;
    box-shadow: 0 0 20px rgba(249,161,6,.15);
}

/*====================================
  Button
====================================*/

.send-btn {
    margin-top: 10px;
    cursor: pointer;
}

/*====================================
  Tablet
====================================*/

@media (max-width: 992px) {

    .contact-container {
        gap: 50px;
    }

}

/*====================================
  Mobile
====================================*/

@media (max-width: 768px) {

    .contact-section {
        padding: 90px 0;
    }

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

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

    .contact-info h2 {
        font-size: 3rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form button {
        width: 100%;
    }

}

/*====================================
  FOOTER
====================================*/

.footer {
    position: relative;
    overflow: hidden;

    padding: 120px 0 40px;

    background: #030303;
    color: #fff;
}

/*====================================
  Watermark
====================================*/

.footer-watermark {
    position: absolute;
    top: 30px;
    left: 50%;

    transform: translateX(-50%);

    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;

    color: rgba(255,255,255,.03);

    white-space: nowrap;
    user-select: none;
    pointer-events: none;
}

/*====================================
  Layout
====================================*/

.footer-container {
    position: relative;
    z-index: 2;

    width: min(92%, 1200px);
    margin: auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

/*====================================
  Brand
====================================*/

.footer-logo {
    display: block;
    width: 180px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #bdbdbd;
    line-height: 1.8;
}

/*====================================
  Headings
====================================*/

.footer h3 {
    margin-bottom: 20px;
    color: #F9A106;
}

/*====================================
  Links
====================================*/

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color .3s ease;
}

.footer a:hover {
    color: #F9A106;
}

/*====================================
  Social Icons
====================================*/

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    font-size: 1.2rem;

    transition: all .35s ease;
}

.social-icons a:hover {
    transform: translateY(-6px);

    background: #F9A106;
    color: #000;
}

/*====================================
  Footer Bottom
====================================*/

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;

    text-align: center;

    color: #999;

    border-top: 1px solid rgba(255,255,255,.08);
}

/*====================================
  Tablet
====================================*/

@media (max-width: 992px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

/*====================================
  Mobile
====================================*/

@media (max-width: 768px) {

    .footer {
        padding: 80px 0 30px;
    }

    .footer-watermark {
        width: 100%;

        text-align: center;
        white-space: normal;

        font-size: 3.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;

        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center;
    }

}