/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #9aacb2;
    background: #0a0f0f;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Video Logo */
.video-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Particle Canvas */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.slogan-text {
    font-size: 2.2vw;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: sloganFadeIn 2s ease 0.5s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

@keyframes sloganFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #0a0f0f;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.service-column {
    padding: 40px 20px;
    border-right: 1px solid #20272a;
    position: relative;
}

.service-column:last-child {
    border-right: none;
}

.service-column.offset {
    transform: translateY(200px);
}

.service-column.center {
    text-align: center;
    transform: translateY(100px);
}

.service-column h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-column h2 span {
    font-weight: 500;
    color: #ff6b35;
}

.service-column p {
    color: #5f767e;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Item Icon (small inline icon above heading) */
.service-item-icon {
    margin-bottom: 16px;
}

.service-item-icon i {
    font-size: 1.6rem;
    color: #ff6b35;
    opacity: 0.85;
}

.service-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.service-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.spacer {
    height: 300px;
}

.spacer-small {
    height: 100px;
}

.spacer-medium {
    height: 250px;
}

/* Additional Services Row */
.services-extra {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    border-top: 1px solid #20272a;
    padding-top: 60px;
}

.service-extra-item {
    padding: 30px 20px;
    border-right: 1px solid #20272a;
}

.service-extra-item:last-child {
    border-right: none;
}

.service-extra-icon {
    margin-bottom: 16px;
}

.service-extra-icon i {
    font-size: 1.8rem;
    color: #ff6b35;
    opacity: 0.85;
}

.service-extra-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 14px;
    line-height: 1.2;
}

.service-extra-item h3 span {
    color: #ff6b35;
    font-weight: 500;
}

.service-extra-item p {
    color: #5f767e;
    font-size: 0.9rem;
    line-height: 1.6;
}

.main-title {
    text-align: left;
    max-width: 400px;
}

.main-title h1 {
    font-size: 4vw;
    font-weight: 700;
    color: #9aacb2;
    line-height: 1.2;
}

.main-title h1 span {
    font-weight: 500;
    color: #ff6b35;
}

/* Intro Section (after services) */
.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #ff6b35;
    margin-bottom: 30px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.intro-text {
    font-size: 1.4vw;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.intro-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.intro-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: #888;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

/* Approach Pillars */
.intro-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}

.pillar {
    padding: 30px 20px;
    border-top: 2px solid #ff6b35;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.pillar i {
    font-size: 1.6rem;
    color: #ff6b35;
    margin-bottom: 14px;
    display: block;
}

.pillar h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a0f0f;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pillar p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Clients Section – changed background from accent to dark */
.clients-section {
    padding: 100px 0;
    background: #0d1417;
    color: #9aacb2;
}

.clients-content {
    text-align: center;
}

.clients-content h2 {
    font-size: 3vw;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 60px;
    line-height: 1.2;
}

.clients-content h2 span {
    font-weight: 500;
    color: #ff6b35;
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 60px 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 80px;
    align-items: center;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(1) opacity(0.9);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: brightness(1.1) opacity(1);
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gallery Section – dual-row scrolling marquee */
.gallery-section {
    padding: 100px 0 60px;
    background: #0a0f0f;
    color: #ffffff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 3vw;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gallery-header h2 span {
    color: #ff6b35;
    font-weight: 500;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #5f767e;
}

.gallery-marquee-wrapper {
    overflow: hidden;
    padding: 10px 0 40px;
}

.gallery-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    width: max-content;
}

.row-forward {
    animation: galleryLeft 28s linear infinite;
}

.row-backward {
    animation: galleryRight 32s linear infinite;
}

.gallery-row:hover {
    animation-play-state: paused;
}

@keyframes galleryLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes galleryRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.gallery-img-item {
    position: relative;
    width: 380px;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.gallery-img-item:hover {
    transform: scale(1.03);
    z-index: 2;
}

.gallery-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-img-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #ff6b35;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav button {
    background: rgba(255, 107, 53, 0.8);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav button:hover {
    background: rgba(255, 107, 53, 1);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #ffffff;
    color: #0a0f0f;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.contact-info h1 {
    font-size: 10vh;
    font-weight: 700;
    color: #0a0f0f;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0a0f0f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    color: #ff6b35;
    font-size: 1rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.contact-phone-line {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444 !important;
    font-weight: 500;
    margin-bottom: 8px !important;
    font-size: 0.95rem !important;
}

.contact-phone-line i {
    color: #ff6b35;
    font-size: 0.85rem;
}

.landline-tag {
    font-size: 0.7rem;
    background: #ff6b35;
    color: white;
    padding: 2px 7px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.contact-link:hover {
    border-bottom-color: #ff6b35;
}

/* Footer */
.footer {
    background: #0a0f0f;
    padding: 40px 0;
    text-align: center;
    color: #9aacb2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-media {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9aacb2;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.2rem;
}

.social-text {
    font-size: 0.9rem;
}

/* ── About Section ──────────────────────────────────────────────────────── */
.about-section {
    padding: 100px 0;
    background: #0d1417;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.about-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 24px;
    line-height: 1.1;
}

.about-main p {
    color: #5f767e;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-partner-quote {
    color: #7a9098 !important;
    font-style: italic;
    border-left: 3px solid #ff6b35;
    padding-left: 16px;
    margin-top: 30px !important;
}

.about-slogan {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-slogan-text {
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 900;
    color: #9aacb2;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: right;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: #111820;
    border: 1px solid #1e282c;
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-card:hover {
    border-color: #ff6b35;
    transform: translateY(-4px);
}

.about-card-highlight {
    border-color: rgba(255, 107, 53, 0.3);
}

.about-card-icon {
    margin-bottom: 14px;
}

.about-card-icon i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.about-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 0.85rem;
    color: #5f767e;
    line-height: 1.7;
}

/* ── Our Expertise Section ──────────────────────────────────────────────── */
.expertise-section {
    padding: 100px 0;
    background: #ffffff;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-header h2 {
    font-size: 3vw;
    font-weight: 700;
    color: #0a0f0f;
    line-height: 1.2;
}

.expertise-header h2 span {
    color: #ff6b35;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 80px;
}

.expertise-block {
    padding: 40px 32px;
    border-right: 1px solid #e8e8e8;
}

.expertise-block:last-child {
    border-right: none;
}

.expertise-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0f0f;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-block h3 i {
    color: #ff6b35;
    font-size: 1rem;
}

.expertise-block > p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

.expertise-list li {
    font-size: 0.83rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 7px;
}

.expertise-list li i {
    color: #ff6b35;
    font-size: 0.45rem;
}

/* Expertise in Event Management */
.event-mgmt-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0 0;
    border-top: 1px solid #e8e8e8;
}

.event-mgmt-title h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0a0f0f;
    line-height: 1.2;
}

.event-mgmt-title h2 span {
    color: #ff6b35;
}

.event-mgmt-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.event-mgmt-item {
    border-top: 2px solid #ff6b35;
    padding-top: 20px;
}

.event-mgmt-item i {
    font-size: 1.4rem;
    color: #ff6b35;
    margin-bottom: 12px;
    display: block;
}

.event-mgmt-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a0f0f;
    margin-bottom: 8px;
}

.event-mgmt-item p {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.6;
}

/* ── Clients quote ───────────────────────────────────────────────────────── */
.clients-quote {
    font-size: 1rem;
    color: #7a9098;
    font-style: italic;
    margin-bottom: 10px;
    margin-top: -30px;
}

/* ── Our Team Section ───────────────────────────────────────────────────── */
.team-section {
    padding: 100px 0;
    background: #0a0f0f;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 3vw;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 14px;
    line-height: 1.2;
}

.team-header h2 span {
    color: #ff6b35;
}

.team-header p {
    color: #5f767e;
    font-size: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: #111820;
    border: 1px solid #1e282c;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
    border-color: #ff6b35;
    transform: translateY(-6px);
}

.team-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.team-card-icon i {
    font-size: 1.4rem;
    color: #ff6b35;
}

.team-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.85rem;
    color: #5f767e;
    line-height: 1.7;
}

/* ── Sustainability Section ──────────────────────────────────────────────── */
.sustainability-section {
    padding: 100px 0;
    background: #111820;
}

.sustain-header {
    text-align: center;
    margin-bottom: 60px;
}

.sustain-header h2 {
    font-size: 2.8vw;
    font-weight: 700;
    color: #9aacb2;
    line-height: 1.2;
}

.sustain-header h2 span {
    color: #ff6b35;
}

.sustain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sustain-item {
    padding: 40px 30px;
    border: 1px solid #1e282c;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.sustain-item:hover {
    border-color: #ff6b35;
}

.sustain-icon {
    margin-bottom: 18px;
}

.sustain-icon i {
    font-size: 2rem;
    color: #ff6b35;
}

.sustain-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #9aacb2;
    margin-bottom: 12px;
}

.sustain-item p {
    font-size: 0.88rem;
    color: #5f767e;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-slogan {
        justify-content: flex-start;
    }

    .about-slogan-text {
        text-align: left;
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .event-mgmt-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-mgmt-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-column.offset {
        transform: translateY(100px);
    }

    .service-column.center {
        transform: translateY(50px);
    }

    .services-extra {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro-text {
        font-size: 18px;
    }

    .intro-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-header h2 {
        font-size: 5vw;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-block {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .expertise-block:last-child {
        border-bottom: none;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-header h2 {
        font-size: 5vw;
    }

    .sustain-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sustain-header h2 {
        font-size: 5vw;
    }

    .main-title h1 {
        font-size: 6vw;
    }

    .clients-content h2 {
        font-size: 5vw;
    }

    .slogan-text {
        font-size: 3.2vw;
        letter-spacing: 0.12em;
    }

    .gallery-header h2 {
        font-size: 5vw;
    }

    .gallery-img-item {
        width: 300px;
        height: 210px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-column {
        border-right: none;
        border-bottom: 1px solid #20272a;
        padding-bottom: 40px;
    }

    .service-column.offset,
    .service-column.center {
        transform: none;
    }

    .services-extra {
        grid-template-columns: 1fr;
    }

    .service-extra-item {
        border-right: none;
        border-bottom: 1px solid #20272a;
        padding-bottom: 30px;
    }

    .intro-pillars {
        grid-template-columns: 1fr 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-heading {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-header h2 {
        font-size: 7vw;
    }

    .sustain-grid {
        grid-template-columns: 1fr;
    }

    .sustain-header h2 {
        font-size: 7vw;
    }

    .event-mgmt-items {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h1 {
        font-size: 8vh;
    }

    .main-title h1 {
        font-size: 8vw;
    }

    .clients-content h2 {
        font-size: 7vw;
    }

    .client-logo {
        width: 120px;
        height: 60px;
    }

    .marquee-content {
        gap: 40px;
    }

    .slogan-text {
        font-size: 3vw;
        letter-spacing: 0.05em;
        padding: 0 15px;
        max-width: 95vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .video-logo {
        top: 20px;
        left: 20px;
    }

    .logo-img {
        height: 40px;
    }

    .gallery-header h2 {
        font-size: 7vw;
    }

    .gallery-img-item {
        width: 260px;
        height: 180px;
    }

    .lightbox-nav button {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }

    .social-media {
        gap: 20px;
    }

    .social-link {
        padding: 8px 12px;
    }

    .social-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .slogan-text {
        font-size: 2.5vw;
        letter-spacing: 0.03em;
        padding: 0 10px;
        max-width: 90vw;
    }

    .intro-pillars {
        grid-template-columns: 1fr;
    }

    .social-media {
        flex-direction: column;
        gap: 15px;
    }

    .social-link {
        padding: 10px 15px;
        width: 100%;
        justify-content: center;
    }

    .gallery-img-item {
        width: 220px;
        height: 155px;
    }
}
