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

:root {
    --rich-brown: #1a0e0a;
    --deep-brown: #0d0604;
    --soft-beige: #f5f5dc;
    --warm-beige: #e0d5c7;
    --gold: #ffd700;
    --light-gold: #ffed4e;
    --brown-shadow: rgba(26, 14, 10, 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: var(--rich-brown);
    color: var(--soft-beige);
    margin: 0;
    padding: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(46, 26, 23, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.logo-text {
    color: var(--soft-beige);
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--soft-beige);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--gold);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--soft-beige);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

nav ul > li > a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
}

nav ul > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease-in-out;
}

nav ul > li:hover > a::before {
    width: calc(100% - 40px);
}

header {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--rich-brown);
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(255, 215, 0, 0.15) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 50%,
            rgba(255, 237, 78, 0.08) 0%,
            transparent 50%
        );
    animation: pulseGlow 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-video-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* Header Content Positioning */
header .container {
    position: relative;
    z-index: 10;
}

header > .container {
    display: flex;
    max-width: 1200px;
    min-height: 100vh;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

header > .container > * {
    flex: 1;
}

header > .container > .text {
    font-family: "Poppins", sans-serif;
}

header .text h2 {
    margin: 0;
    font-weight: 900;
    font-size: 4em;
    line-height: 1.2;
}

header .text h2:last-of-type {
    margin-bottom: 20px;
}

header .text > span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

header > .container > .image {
    display: flex;
    justify-content: end;
}

header > .container > .image .img-box {
    width: clamp(200px, 40vw, 400px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 8px solid var(--warm-beige);
    overflow: hidden;
    box-shadow: 0 10px 30px -10px var(--brown-shadow);
}

header > .container > .image .img-box img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main > .container {
    max-width: 1200px;
    margin-inline: auto;
    padding-block: 120px;
}

main > .container > h2,
section > .container > h2,
section > .-container > .heading h2 {
    font-size: 4em;
    font-weight: 900;
    margin-bottom: 5vh;
    letter-spacing: -0.06em;
    text-align: center;
    color: var(--soft-beige);
}

main#about-us {
    background-color: var(--deep-brown);
}

main#about-us > .container > h2 {
    text-align: left;
    font-size: 4em;
}

main#about-us .text:not(:last-child) {
    margin-bottom: 20px;
}

main#about-us .text > h3 {
    font-size: 2em;
    margin-block: 0;
}

main#about-us .text > p {
    line-height: 1.8;
    color: var(--warm-beige);
}

main#about-us .text > ul {
    list-style: disc;
}

main#about-us .text ul li {
    padding: 10px;
}

main#about-us a.btn-link {
    margin-top: 3rem;
    display: block;
    width: fit-content;
}

.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rich-brown), var(--light-navy));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.cta-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cta-header .section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--light-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px -10px var(--navy-shadow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.cta-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--light-slate);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--deep-brown);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -15px var(--brown-shadow);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--soft-beige);
    margin: 0 0 0.5rem 0;
}

.feature-text p {
    color: var(--warm-beige);
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.primary-cta {
    background: var(--deep-brown);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.primary-cta h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--soft-beige);
    margin: 0 0 1rem 0;
}

.primary-cta p {
    color: var(--warm-beige);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold), var(--rich-brown));
    color: var(--rich-brown);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px var(--brown-shadow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--rich-brown);
    transform: translateY(-3px);
}

.contact-info {
    background: var(--deep-brown);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item .label {
    font-size: 0.9rem;
    color: var(--warm-beige);
    margin-bottom: 0.25rem;
}

.contact-item .value {
    font-size: 1rem;
    color: var(--soft-beige);
    font-weight: 500;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-features {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.services > .container {
    max-width: 1200px;
    margin: 10rem auto;
}

.services > .container .heading {
    text-align: left;
}

.services > .container .heading h2 {
    text-align: left;
    font-size: 4em;
    margin-bottom: 0;
    color: var(--soft-beige);
}

.services > .container .heading p {
    color: var(--warm-beige);
    line-height: 1.8;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    max-width: 65ch;
    margin: 0 0 2rem 0;
}

.services .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5rem;
    gap: 2rem;
}

.services .grid-container .card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 8px;
    background-color: var(--deep-brown);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .grid-container .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px -15px var(--brown-shadow);
}

.services .grid-container .card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6),
        0 0 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
    filter: brightness(1.1);
}

.services .grid-container .card h3 {
    font-size: 1.875rem;
    margin: 0;
    color: var(--soft-beige);
}

.services .grid-container .card p {
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.6;
    color: var(--warm-beige);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-gallery .container {
    max-width: 1200px;
    margin-inline: auto;
}

.work-gallery .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.work-gallery .grid-container .img-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
}

.work-gallery .grid-container .img-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(46, 26, 23, 0.9) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work-gallery .grid-container .img-card:hover::before {
    opacity: 1;
}

.work-gallery .grid-container .img-card:hover .img-card-details {
    opacity: 1;
    transform: translateY(0);
}

.work-gallery .grid-container .img-card:hover img {
    transform: scale(1.05);
}

.work-gallery .grid-container .img-card .img-card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-gallery .grid-container .img-card .img-card-details h2 {
    color: var(--soft-beige);
    margin: 0;
    font-size: 1.5rem;
}

.work-gallery .grid-container .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-gallery {
    padding-bottom: 200px;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--deep-brown), var(--rich-brown));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 4rem;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 0 2rem;
}

.footer-section h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--soft-beige);
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--gold);
}

.footer-logo h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--soft-beige);
    margin: 0 0 0.5rem 0;
}

.footer-logo p {
    font-size: 0.9rem;
    color: var(--gold);
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    filter: brightness(1.1);
}

.footer-description p {
    color: var(--warm-beige);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.footer-links-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-simple li {
    margin-bottom: 0.8rem;
}

.footer-links-simple li a {
    color: var(--warm-beige);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links-simple li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--rich-brown);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-container .btn-link {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-container .btn-link:hover {
    background-color: var(--gold);
    color: var(--rich-brown);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--warm-beige);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    filter: brightness(1.1);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    margin: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0 4rem;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom-content p {
    color: var(--warm-beige);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--warm-beige);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.btn-link {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-link:hover {
    background-color: var(--gold);
    color: var(--rich-brown);
}

span.text-highlight {
    font-size: inherit;
    display: inline;
    color: #c9a878;
    text-shadow: 0 0 6px rgba(212, 184, 150, 0.6),
        0 0 12px rgba(212, 184, 150, 0.4), 0 0 18px rgba(212, 184, 150, 0.3),
        0 0 24px rgba(212, 184, 150, 0.1);
    filter: brightness(1.05);
}

/* Enhanced About Section Styles */
#about-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-brown), var(--rich-brown));
    position: relative;
    overflow: hidden;
}

#about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.about-header .section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--deep-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--soft-beige);
    box-shadow: 0 10px 30px -10px var(--brown-shadow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--soft-beige);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--warm-beige);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-intro h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--soft-beige);
    margin: 0 0 1rem 0;
}

.expertise-intro p {
    font-size: 1.1rem;
    color: var(--warm-beige);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.expertise-item {
    background: var(--light-navy);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--teal);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.expertise-item:hover::before {
    transform: scaleX(1);
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px -15px var(--navy-shadow);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 245, 212, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.expertise-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-slate);
    margin: 0 0 0.5rem 0;
}

.institution {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
}

.achievements {
    background: var(--light-navy);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.achievements h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-slate);
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.achievements p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--teal);
    font-weight: 600;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 245, 212, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 212, 0.1);
    transition: all 0.3s ease;
}

.work-item:hover {
    background: rgba(0, 245, 212, 0.1);
    transform: translateX(5px);
}

.work-item i {
    color: var(--teal);
    font-size: 1.2rem;
}

.work-item span {
    color: var(--light-slate);
    font-weight: 500;
}

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

.cta-container .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--teal), var(--light-navy));
    border: none;
    color: var(--rich-brown);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-container .btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px var(--navy-shadow);
}

#job-role {
    font-size: 3.75rem;
    font-weight: 600;
    color: var(--teal);
}

.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.8em;
    background: var(--teal);
    margin-left: 5px;
    animation: cursorGlow 1.5s ease-in-out infinite;
    border-radius: 2px;
}

@keyframes cursorGlow {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--teal), 0 0 16px rgba(0, 245, 212, 0.5);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 3px var(--teal);
    }
}

/* Genre Tags Styling */
.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-items: center;
}

.genre-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.genre-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

/* Fix project meta alignment */
.project-meta {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.project-meta .year {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.project-meta .genre-tags {
    flex: 1;
    margin-top: 0;
}

/* Enhanced Gallery Section Styles */
.work-gallery {
    padding: 6rem 0;
    background: var(--rich-brown);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header .section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--light-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px -10px var(--navy-shadow);
}

.gallery-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--light-slate);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    background: var(--light-navy);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px var(--navy-shadow);
}

.gallery-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-brown);
    font-weight: 600;
}

.overlay-content i {
    font-size: 2rem;
}

.view-details-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep-brown);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    transform: scale(1.1);
}

.view-details-btn i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.gallery-details {
    padding: 1.5rem;
}

.project-info h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-slate);
    margin: 0 0 0.5rem 0;
}

.project-type {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.3);
    filter: brightness(1.1);
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.project-meta span {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
    padding: 3rem;
    background: var(--light-navy);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 2rem;
}

.gallery-cta .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--teal), var(--light-navy));
    border: none;
    color: var(--rich-brown);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-cta .btn-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px var(--navy-shadow);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--rich-brown), var(--light-navy));
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal), var(--light-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px -10px var(--navy-shadow);
    animation: pulse 2s ease-in-out infinite;
}

.contact-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--light-slate);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
}

.contact-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--slate);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-navy);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 212, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px var(--navy-shadow);
    border-color: var(--teal);
}

.contact-item i {
    font-size: 2rem;
    color: var(--teal);
    min-width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-slate);
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    color: var(--slate);
    margin: 0;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--light-navy);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.contact-form h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-slate);
    margin: 0 0 2rem 0;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--rich-brown);
    border: 2px solid rgba(0, 245, 212, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate);
}

.contact-form .btn-link {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

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

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero .text {
        max-width: 100%;
        margin-bottom: 3rem;
    }

    .hero .img-box {
        max-width: 100%;
    }

    main > .container > h2,
    section > .container > h2,
    section > .container > .heading h2 {
        font-size: 3em;
    }

    .services > .container .heading h2 {
        font-size: 4em;
    }

    main#about-us > .container > h2 {
        font-size: 3em;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: var(--rich-brown) !important;
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        border-left: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-menu.active {
        right: 0;
        background: var(--rich-brown) !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1.2rem 1rem;
        color: var(--white);
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .nav-link:hover {
        background: rgba(0, 245, 212, 0.1);
        color: var(--teal);
        transform: translateX(5px);
        border-left-color: var(--teal);
    }

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

    nav .logo {
        font-size: 1.2rem;
    }

    /* Hero Section */
    header {
        min-height: 100vh;
        padding: 2rem 0;
    }

    header > .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    header > .container > * {
        flex: none;
    }

    header .text {
        text-align: center;
        padding: 0;
        order: 2;
    }

    header .text h1 {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
        margin-bottom: 1rem;
    }

    header .text h2 {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
    }

    #job-role {
        font-size: 1.4rem;
    }

    header > .container > .image {
        justify-content: center;
        order: 1;
    }

    header > .container > .image .img-box {
        width: clamp(200px, 45vw, 350px);
        border-width: 6px;
    }

    /* Section Headings */
    main > .container > h2,
    section > .container > h2,
    section > .container > .heading h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 2rem;
        text-align: center;
    }

    .services > .container .heading h2 {
        font-size: clamp(2.5rem, 7vw, 3rem);
        text-align: center;
    }

    .services > .container .heading p {
        font-size: clamp(1rem, 3vw, 1.3rem);
        text-align: center;
    }

    main#about-us > .container > h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        text-align: center;
    }

    /* Services Section */
    .services {
        padding: 6rem 0;
    }

    .services .grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .services .grid-container .card {
        padding: 2rem;
        text-align: center;
    }

    .services .grid-container .card i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .services .grid-container .card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .services .grid-container .card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* About Section */
    #about-us {
        padding: 6rem 0;
    }

    #about-us > .container > h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        text-align: center;
    }

    #about-us .text {
        font-size: 1rem;
        line-height: 1.7;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    #about-us .text ul {
        padding-left: 1.5rem;
        text-align: left;
    }

    /* CTA Section */
    .cta {
        padding: 4rem 1.5rem;
    }

    .cta h3 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 2rem;
    }

    /* Gallery Section */
    .gallery {
        padding: 6rem 0;
    }

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

    .gallery-item {
        margin-bottom: 2rem;
    }

    .gallery-cta {
        padding: 2rem;
        text-align: center;
    }

    .gallery-cta p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Contact Section */
    .contact {
        padding: 6rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-item {
        padding: 2rem;
        text-align: center;
        background: var(--light-navy);
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .contact-item i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 2rem;
        background: var(--light-navy);
        border-radius: 12px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 1rem;
    }

    /* Expertise Grid */
    .expertise-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .achievements {
        padding: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        width: 90%;
        max-width: 280px;
        padding: 5rem 1.5rem 1.5rem;
    }

    .nav-link {
        padding: 1rem 0.75rem;
        font-size: 1rem;
    }

    /* Hero Section */
    header {
        min-height: 100vh;
        padding: 1rem 0;
    }

    header > .container {
        padding: 0 0.5rem;
        gap: 0.75rem;
    }

    header .text h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
    }

    header .text h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 0.75rem;
    }

    #job-role {
        font-size: 1.2rem;
    }

    header > .container > .image .img-box {
        width: clamp(180px, 40vw, 280px);
        border-width: 5px;
    }

    /* Section Headings */
    main > .container > h2,
    section > .container > h2,
    section > .container > .heading h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 1.5rem;
    }

    .services > .container .heading h2 {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .services > .container .heading p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    main#about-us > .container > h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    /* Services Section */
    .services {
        padding: 4rem 0;
    }

    .services .grid-container {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .services .grid-container .card {
        padding: 1.5rem;
    }

    .services .grid-container .card i {
        font-size: 2.5rem;
    }

    .services .grid-container .card h3 {
        font-size: 1.3rem;
    }

    .services .grid-container .card p {
        font-size: 0.95rem;
    }

    /* About Section */
    #about-us {
        padding: 4rem 0;
    }

    #about-us > .container > h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    #about-us .text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    #about-us .text ul {
        padding-left: 1.2rem;
    }

    /* CTA Section */
    .cta {
        padding: 3rem 1rem;
    }

    .cta h3 {
        font-size: clamp(1.3rem, 3.5vw, 1.5rem);
    }

    .cta p {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }

    /* Gallery Section */
    .gallery {
        padding: 4rem 0;
    }

    .gallery-grid {
        gap: 1.5rem;
    }

    .gallery-item {
        margin-bottom: 1.5rem;
    }

    .gallery-cta {
        padding: 1.5rem;
    }

    .gallery-cta p {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 0;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item i {
        font-size: 1.8rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-content {
        gap: 1.5rem;
        padding: 3rem 0 1.5rem;
    }

    .footer-bottom-content {
        padding: 1rem 0;
    }

    .footer-bottom-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 0.75rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0.5rem 0.75rem;
    }

    .nav-logo img {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Hero Section */
    header .text h1 {
        font-size: clamp(2rem, 7vw, 2.5rem);
        margin-bottom: 0.5rem;
    }

    header .text h2 {
        font-size: clamp(3.5rem, 5vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    #job-role {
        font-size: 1.1rem;
    }

    header > .container > .image .img-box {
        width: clamp(150px, 35vw, 220px);
        border-width: 4px;
    }

    /* Section Headings */
    main > .container > h2,
    section > .container > h2,
    section > .container > .heading h2 {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
        margin-bottom: 1.2rem;
    }

    .services > .container .heading h2 {
        font-size: clamp(1.7rem, 5vw, 2rem);
    }

    .services > .container .heading p {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }

    /* Services Section */
    .services {
        padding: 3rem 0;
    }

    .services .grid-container {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .services .grid-container .card {
        padding: 1.25rem;
    }

    .services .grid-container .card i {
        font-size: 2rem;
    }

    .services .grid-container .card h3 {
        font-size: 1.2rem;
    }

    .services .grid-container .card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* About Section */
    #about-us {
        padding: 3rem 0;
    }

    #about-us > .container > h2 {
        font-size: clamp(1.5rem, 4.5vw, 1.8rem);
    }

    #about-us .text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    #about-us .text ul {
        padding-left: 1rem;
    }

    /* CTA Section */
    .cta {
        padding: 2.5rem 0.75rem;
    }

    .cta h3 {
        font-size: clamp(1.2rem, 3vw, 1.3rem);
    }

    .cta p {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

    /* Gallery Section */
    .gallery {
        padding: 3rem 0;
    }

    .gallery-grid {
        gap: 1rem;
    }

    .gallery-item {
        margin-bottom: 1rem;
    }

    .gallery-cta {
        padding: 1.25rem;
    }

    .gallery-cta p {
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn-link {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        padding: 2.5rem 0 1rem;
        gap: 1rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-logo img {
        width: 50px;
    }

    .footer-logo h3 {
        font-size: 1.3rem;
    }

    .footer-bottom-content {
        padding: 0.75rem 0;
    }

    .footer-bottom-content p {
        font-size: 0.8rem;
    }
}

/* Simplified About Section Styles */
#about-us {
    background-color: var(--deep-brown);
    padding: 6rem 0;
}

#about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#about-us .container h2 {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-beige);
    text-align: center;
    margin-bottom: 3rem;
}

#about-us .text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-beige);
    margin-bottom: 2rem;
}

#about-us .text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#about-us .text ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--warm-beige);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Simplified CTA Section Styles */
.cta {
    background-color: var(--deep-brown);
    padding-block: 4rem;
}

.cta h3 {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--soft-beige);
}

.cta p {
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto 2rem;
    color: var(--warm-beige);
    font-size: 1.1rem;
}

.cta .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
