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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: visible;
    box-sizing: border-box;
}

.container2 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    overflow-x: visible;
    box-sizing: border-box;
}

/* Header */
header {
    padding: 20px 0;
    position: relative;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    position: absolute;
    display: flex;
    list-style: none;
    gap: 30px;
    right: 400px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #710b0e;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Montserrat', Arial, sans-serif;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.6;
}

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

.btn-primary {
    background: #f3eeb7;
    color: #000;
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(113, 11, 14, 0.12);
}

.btn-primary:hover {
    background: #710b0e;
    transform: translateY(-2px) scale(1.04);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 0;
    border: none;
    border-radius: 0;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: 10px;
}

.btn-secondary:hover {
    color: #710b0e;
    text-decoration: underline;
}

.hero-visual {
    position: absolute;
    height: 400px;
    right: 70px;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-green-bg {
    position: absolute;
    right: 0;
    top: -100px;
    width: 380px;
    height: 600px;
    background: #710b0e;
    border-top-right-radius: 0;
    border-bottom-right-radius: 130px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 0;
    box-shadow: 0 8px 32px rgba(113, 11, 14, 0.18);
}

.hero-green-card-bg {
    position: absolute;
    right: 0px;
    top: -45px;
    width: 380px;
    height: 520px;
    background: #f3eeb7;
    border-top-left-radius: 130px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(113, 11, 14, 0.2);
}

.creative-card {

    background: transparent;
    border-radius: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    box-shadow: none;
}

.creative-card h2 {
    font-size: 4rem;
    left: 10px;
    color: #710b0e;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Pacifico', cursive;
}

.floating-dots {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #f3eeb7;
    border-radius: 50%;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding: 20px;
}

.section-tag {
    background: #710b0e;
    border: 1px solid #710b0e;
    width: fit-content;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
}

.section-tag:hover {
    background: #710b0e;
    border: 1px solid #710b0e;
    color: #710b0e;
    transition: all 0.3s;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-text p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
    position: relative;
}

.person-photo {
    width: 100%;

}

.gallery-btn {
    background: #710b0e;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-btn:hover {
    background: #710b0e;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #000;
}

.stats-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.stats-number {
    font-size: 4rem;
    font-weight: bold;
    color: #f3eeb7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.stats-desc {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.contact-btn {
    background: #ffffff;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #710b0e;
    transform: translateY(-2px);
}

.references {
    display: flex;
    gap: 15px;
    align-items: center;
    background-color: #111;
}

.ref-btn {
    background: #710b0e;
    color: #f3eeb7;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.ref-btn:hover {
    background: #f3eeb7;
    color: #710b0e;
}

.ref-badge {
    background: #333;
    color: #f3eeb7;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.instagram-btn,
.phone-btn,
.email-btn,
.whatsapp-btn {
    background: #181818;
    color: #fff;
    border-radius: 18px;
    border: 2px solid #f3eeb7;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px;
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(113, 11, 14, 0.08);
    transition: background 0.3s, color 0.3s;
}

.instagram-btn:hover,
.phone-btn:hover,
.email-btn:hover,
.whatsapp-btn:hover {
    background: #710b0e;
    color: #000;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #111;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.services-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #710b0e;
    box-shadow: 0 20px 40px rgba(113, 11, 14, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 2px solid #710b0e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #f3eeb7;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    background: #710b0e;
    color: #f3eeb7;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* References */
.references {
    padding: 80px 0;
}

.references h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.ref-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.ref-logo:hover {
    filter: grayscale(0%);
}

.ref-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #111;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #710b0e;
    background: #0a0a0a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.contact-form button {
    margin-top: 10px;
}

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #710b0e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(113, 11, 14, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.info-card p {
    color: #ccc;
    margin: 8px 0;
}

.info-card a {
    color: #f3eeb7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.info-card a:hover {
    color: #710b0e;
}

.info-desc {
    font-size: 0.9rem;
    color: #999;
}

.social-link {
    display: inline-block;
    margin-top: 10px;
}

/* Contact Details */
.contact-details {
    padding: 80px 0;
    background: #111;
}

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

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

.contact-item p {
    margin: 10px 0;
    color: #ffffff;
}

.price-btn-large {
    background: #710b0e;
    color: #f3eeb7;
    padding: 15px 30px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.price-btn-large:hover {
    background: #f3eeb7;
    color: #710b0e;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.footer-text {
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
}

.footer-text a {
    color: #f3eeb7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: #710b0e;
}

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

    .hero-content,
    .about-content,
    .stats-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

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

    .services-header h2 {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

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

    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 20px;
    }
}

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

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

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.creative-card {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-card {
    animation: fadeInUp 0.8s ease-out both;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

.service-card:nth-child(5) {
    animation-delay: 0.4s;
}

.service-card:nth-child(6) {
    animation-delay: 0.5s;
}

.about-stats-row {
    padding: 80px 0;
    background: #111;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 340px;
}

.about-text {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image-center {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    padding: 10px;
}

.person-photo {
    width: 100%;

    object-fit: cover;
}

.stats-info {
    background: #181818;
    padding: 32px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-btn,
.instagram-btn,
.phone-btn,
.price-btn {
    font-size: 0.98rem;
    padding: 7px 16px;
    border-radius: 12px;
}

.price-btn {
    background: #f3eeb7;
    color: #000;
    border: 2px solid #710b0e;
}

.price-btn:hover {
    background: #710b0e;
    color: #f3eeb7;
}

.address-info {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #f3eeb7;
}

.address-info p {
    margin: 5px 0;
}

@media (max-width: 1030px) {

    html,
    body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .about-text {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
        padding: 10px !important;
        margin: 0 auto 8px auto !important;
        word-break: break-word;
    }
    .about-image-center{
        display: none !important;
    }

    .about-stats-row,
    .about-stats-grid,
    .stats-info {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
        padding: 0 !important;
        margin: 0 auto 8px auto !important;
        word-break: break-word;
    }

    .about-text,
    .about-image-center,
    .stats-info {
        margin: 12px 0 !important;
    }

    .person-photo {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .hero-green-bg,
    .hero-green-card-bg {
        display: none !important;
    }

    .hero {
        min-height: 320px;
        padding-top: 30px;
        position: relative;
    }

    .hero-visual {
        position: relative;
        height: 80px;
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .creative-card {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #710b0e;
        border-radius: 36px;
        padding: 18px 10px;
        width: 90vw;
        max-width: 340px;
        min-height: 70px;
        margin: 0 auto;
        box-shadow: 0 8px 32px rgba(113, 11, 14, 0.10);
    }

    .creative-card h2 {
        position: static;
        font-size: 2rem;
        text-align: center;
        width: 100%;
    }

    .about-stats-grid {
        grid-template-columns: 1fr !important;
        min-height: unset;
    }

    .about-stats-row,
    .about-stats-grid {
        max-width: 100vw;
        width: 100%;
        padding: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .about-text,
    .about-image-center,
    .stats-info {
        width: 100%;
        max-width: 100%;
        padding: 8px 6px;
        margin: 0 auto 10px auto;
        box-sizing: border-box;
    }

    .about-image-center {
        display: flex;
        justify-content: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 18px;
    }

    .hero-text {
        text-align: center;
        width: 100%;
    }

    .nav-links {
        position: static;
        right: auto;
        left: auto;
        gap: 10px;
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
        padding: 0 8px;
        text-align: center;
        word-break: break-word;
    }
}

.about-left-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.about-left-flex .about-text {
    flex: 1 1 0;
    min-width: 0;
}

.about-left-flex .about-image-center {
    flex-shrink: 0;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

.about-left-box {
    padding: 40px 32px 32px 40px;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .about-left-flex {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-left-box {
        padding: 24px 10px;
    }
}

@media (max-width: 600px) {
    .stats-info {
        padding: 14px 6px;
        font-size: 0.97rem;
    }
    

    .contact-btn,
    .instagram-btn,
    .phone-btn {
        font-size: 0.90rem;
        padding: 5px 8px;
        border-radius: 8px;
        margin-right: 4px;
    }

    .stats-number {
        font-size: 2.2rem;
    }

    .stats-text {
        font-size: 1.1rem;
    }

    .stats-desc {
        font-size: 0.95rem;
    }
}

@media (min-width: 901px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 14px;
    }

    .service-card {
        min-width: unset;
        flex: unset;
        scroll-snap-align: unset;
        padding: 16px 8px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .service-btn {
        font-size: 0.95rem;
        padding: 6px 12px;
        border-radius: 12px;
    }
}

.service-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #333;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #710b0e;
    box-shadow: 0 20px 40px rgba(113, 11, 14, 0.15);
}

/* Service Detail Section */
.service-detail {
    padding: 80px 0;
    background: #111;
}

.service-detail-header {
    text-align: center;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 60px 20px;
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(113, 11, 14, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(243, 238, 183, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-detail-header .section-tag {
    position: relative;
    z-index: 2;
}

.service-detail-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.service-detail-header .service-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.service-detail-header p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.detail-text h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #f3eeb7;
}

.detail-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: #ccc;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #710b0e;
    font-weight: bold;
    font-size: 1.2rem;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
}

.detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.stat-box {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.stat-box:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f3eeb7;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 0.95rem;
}

.cta-card {
    background: linear-gradient(135deg, #710b0e 0%, #8b0d10 100%);
    border: none;
    text-align: center;
}

.cta-card h3 {
    color: #f3eeb7;
}

.cta-card p {
    color: #f3eeb7;
    margin-bottom: 20px;
}

.cta-card .btn-primary {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail-header h1 {
        font-size: 2rem;
    }

    .detail-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 901px) {
    .hero-text {
        text-align: center;
    }
}

@media (max-width: 1030px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

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

.footer-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f3eeb7;
    margin-bottom: 10px;
    font-family: 'Pacifico', cursive;
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #111;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid #333;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #710b0e;
    color: #f3eeb7;
    border-color: #710b0e;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    animation: fadeIn 0.5s ease-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay h3 {
    font-size: 1.5rem;
    color: #f3eeb7;
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: #ccc;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item.show {
    animation: fadeIn 0.5s ease-out;
}

@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .gallery-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* References Scrolling */
.references-wrapper {
    overflow: hidden;
    background: #000;
    padding: 40px 0;
}

.references-scroll {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.ref-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: filter 0.3s;
    flex-shrink: 0;
}

.ref-logo:hover {
    filter: grayscale(0%);
}

.ref-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .references-scroll {
        gap: 20px;
        animation: scroll 20s linear infinite;
    }
    
    .ref-logo {
        width: 100px;
        height: 70px;
    }
}

/* References Scrolling */
.references-wrapper {
    overflow: hidden;
    background: #000;
    padding: 40px 0;
}

.references-scroll {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
}

.ref-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: filter 0.3s;
    flex-shrink: 0;
}

.ref-logo:hover {
    filter: grayscale(0%);
}

.ref-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .references-scroll {
        gap: 20px;
        animation: scroll 30s linear infinite;
    }

    .ref-logo {
        width: 100px;
        height: 70px;
    }
}

/* Example Projects Section */
.example-projects {
    padding: 80px 0;
    background: #000;
}

.example-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #333;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #710b0e;
    box-shadow: 0 20px 40px rgba(113, 11, 14, 0.15);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card-content {
    padding: 20px;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.project-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .example-projects h2 {
        font-size: 2rem;
    }

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

    .project-card-content {
        padding: 15px;
    }
}
