/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f6f6f6;
    color: #232323;
    line-height: 1.6;
    position: relative;
}

/* Background building icons */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Building icons overlay */
.building-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.building-icon {
    position: absolute;
    color: #d4af37;
    font-size: 2rem;
    opacity: 0.1;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
    display: block !important;
    user-select: none;
}

/* Scattered positioning across the site */
.building-icon:nth-child(1) {
    top: 5%;
    left: 8%;
    font-size: 2.5rem;
}

.building-icon:nth-child(2) {
    top: 15%;
    left: 85%;
    font-size: 1.8rem;
}

.building-icon:nth-child(3) {
    top: 35%;
    left: 5%;
    font-size: 2.2rem;
}

.building-icon:nth-child(4) {
    top: 55%;
    left: 90%;
    font-size: 1.9rem;
}

.building-icon:nth-child(5) {
    top: 75%;
    left: 12%;
    font-size: 2.3rem;
}

.building-icon:nth-child(6) {
    top: 25%;
    left: 70%;
    font-size: 1.7rem;
}

.building-icon:nth-child(7) {
    top: 45%;
    left: 80%;
    font-size: 2.1rem;
}

.building-icon:nth-child(8) {
    top: 65%;
    left: 25%;
    font-size: 1.6rem;
}

.building-icon:nth-child(9) {
    top: 85%;
    left: 75%;
    font-size: 2.4rem;
}

.building-icon:nth-child(10) {
    top: 10%;
    left: 45%;
    font-size: 1.9rem;
}

.building-icon:nth-child(11) {
    top: 60%;
    left: 60%;
    font-size: 2.0rem;
}

.building-icon:nth-child(12) {
    top: 90%;
    left: 35%;
    font-size: 1.8rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.hero {
    background: linear-gradient(120deg, #232323 60%, #3a3a3a 100%);
    color: #fff;
    padding: 64px 0 32px 0;
    box-shadow: 0 4px 24px rgba(30, 30, 60, 0.08);
    position: relative;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.branding h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.branding h1 i {
    color: #d4af37;
    font-size: 2.2rem;
    margin-right: 8px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    animation: iconGlow 3s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
        transform: scale(1);
    }

    100% {
        text-shadow: 0 4px 8px rgba(212, 175, 55, 0.5);
        transform: scale(1.05);
    }
}

.branding .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.branding .address {
    font-size: 1rem;
    color: #b0b0b0;
}

.hero-keywords {
    font-size: 1.1rem;
    color: #d4af37;
    margin-top: 12px;
    font-weight: 600;
}

.hero-photo {
    width: 340px;
    height: 340px;
    background: #2d2d2d;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(30, 30, 60, 0.18);
    overflow: hidden;
    position: relative;
}

.hero-photo::after {
    content: 'Your Photo';
    color: #b0b0b0;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.main-nav {
    margin-top: 32px;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s;
}

.main-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d4af37;
}

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

/* Section base */
.section {
    padding: 80px 0 56px 0;
}

.section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #232323;
    letter-spacing: 1px;
    text-align: left;
}

/* About, Mission, Philosophy */
.flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.about-flex {
    align-items: center;
}

.about-text {
    flex: 2 1 340px;
}

.about-photo {
    width: 320px;
    height: 260px;
    background: #eaeaea;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(30, 30, 60, 0.06);
    position: relative;
    overflow: hidden;
}

.about-photo::after {
    content: 'About Photo';
    color: #b0b0b0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.mission,
.philosophy {
    flex: 1 1 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30, 30, 60, 0.06);
    padding: 32px 24px;
    margin-bottom: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission:hover,
.philosophy:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(30, 30, 60, 0.10);
}

.mission h3,
.philosophy h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30, 30, 60, 0.06);
    padding: 32px 24px 24px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 340px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(30, 30, 60, 0.12);
}

.service-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #232323;
}

.service-photo {
    transition: 0.5s;
    width: 100%;
    height: 120px;
    background: #eaeaea;
    border-radius: 12px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-photo:hover {
    height: 170px;
}

.service-photo::after {
    content: 'Service Photo';
    color: #b0b0b0;
    font-size: 1rem;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* Differentiators */
.differentiators .diff-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0;
}

.differentiators .diff-list li {
    flex: 1 1 220px;
    background: #f8f7f4;
    border-radius: 12px;
    padding: 24px 18px;
    font-weight: 600;
    color: #232323;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 1px 6px rgba(30, 30, 60, 0.04);
    transition: background 0.2s;
    min-height: 120px;
}

.differentiators .diff-list li:hover {
    background: #f3e9d2;
}

.differentiators .icon {
    color: #d4af37;
    font-size: 1.3em;
    margin-top: 2px;
}

/* Industries */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    padding: 0;
}

.industries-list li {
    background: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    color: #232323;
    box-shadow: 0 1px 6px rgba(30, 30, 60, 0.04);
    transition: background 0.2s;
}

.industries-list li:hover {
    background: #f8f7f4;
}

/* Gallery */
.gallery-section {
    background: #fff;
    padding: 64px 0 56px 0;
}

.gallery-section h2 {
    color: #232323;
    margin-bottom: 36px;
    text-align: left;
}

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

.gallery-photo {
    width: 100%;
    height: 180px;
    background: #eaeaea;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-photo::after {
    content: 'Gallery Photo';
    color: #b0b0b0;
    font-size: 1rem;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* Testimonials */
.testimonials-section {
    background: #f8f7f4;
    padding: 64px 0 56px 0;
}

.testimonials-section h2 {
    color: #232323;
    margin-bottom: 36px;
    text-align: left;
}

.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
}

.testimonial-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(30, 30, 60, 0.06);
    padding: 28px 24px 20px 24px;
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #eaeaea;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.testimonial-photo::after {
    content: 'Photo';
    color: #b0b0b0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #232323;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 700;
    color: #d4af37;
    font-size: 1rem;
}

/* Interactive Visual & Contact */
.interactive-visual {
    background: #232323;
    color: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(30, 30, 60, 0.10);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.interactive-visual .container.flex {
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

.visual-wrapper {
    flex: 1 1 350px;
    min-width: 320px;
    margin-bottom: 24px;
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: #d4af37;
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(odd) {
    background: #bfa13a;
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    background: #e6c866;
    animation-duration: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 1;
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.8;
    }
}

.visual-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.visual-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-overlay p {
    font-size: 1.1rem;
    color: #e0e0e0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-info {
    flex: 2 1 400px;
    min-width: 320px;
}

.contact-info h2 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.contact-list {
    list-style: none;
    margin: 18px 0 18px 0;
    padding: 0;
}

.contact-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-list a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.cta-btn {
    display: inline-block;
    background: #d4af37;
    color: #232323;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 32px;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(30, 30, 60, 0.10);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #bfa13a;
    color: #fff;
    transform: scale(1.04);
}

.x-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #fff;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 32px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s, transform 0.2s;
    border: none;
    letter-spacing: 0.5px;
}

.x-btn:hover {
    background: #333333;
    transform: scale(1.04);
}

.x-btn i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #232323;
    color: #b0b0b0;
    text-align: center;
    padding: 24px 0;
    font-size: 1rem;
    border-radius: 16px 16px 0 0;
    margin-top: 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #000000;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #333333;
    transform: scale(1.1);
}

/* Animations */
.section,
.service-card,
.mission,
.philosophy,
.diff-list li,
.industries-list li,
.cta-btn,
.gallery-photo,
.testimonial-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.77, 0, .18, 1), transform 0.7s cubic-bezier(.77, 0, .18, 1);
}

.section.visible,
.service-card.visible,
.mission.visible,
.philosophy.visible,
.diff-list li.visible,
.industries-list li.visible,
.cta-btn.visible,
.gallery-photo.visible,
.testimonial-card.visible {
    opacity: 1;
    transform: none;
}

.hero-photo,
.about-photo,
.service-photo,
.gallery-photo,
.testimonial-photo {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
}

.hero-photo {
    max-width: 340px;
    max-height: 340px;
    min-width: 220px;
    min-height: 180px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(30, 30, 60, 0.18);
}

.about-photo {
    max-width: 320px;
    max-height: 260px;
    min-width: 180px;
    min-height: 120px;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(30, 30, 60, 0.06);
}

.service-photo {
    height: 120px;
    border-radius: 12px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(30, 30, 60, 0.04);
}

.gallery-photo {
    height: 180px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(30, 30, 60, 0.04);
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(30, 30, 60, 0.04);
}

/* Responsive */
@media (max-width: 1100px) {

    .hero-flex,
    .about-flex,
    .interactive-visual .container.flex {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .main-nav {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-photo,
    .about-photo {
        width: 100%;
        max-width: 340px;
        height: 220px;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 8px;
    }

    .hero {
        padding: 32px 0 18px 0;
    }

    .section {
        padding: 36px 0 24px 0;
    }

    .footer {
        font-size: 0.95rem;
        padding: 16px 0;
    }

    .gallery-photo {
        height: 120px;
    }

    .visual-wrapper {
        height: 250px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

/* Remove .photo-placeholder styles if present */
.photo-placeholder {
    display: none !important;
}