:root {
    --primary: #decbaa;
    --background: #0d0d0d;
    --white: #ffffff;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: #f2f2f2;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

.font-display {
    font-family: 'Italiana', serif;
}

.italic {
    font-family: 'Italiana', serif;
    font-style: italic;
}

.text-primary {
    color: var(--primary);
}

/* Layout Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.social-icon i {
    width: 16px;
    height: 16px;
}

.mobile-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.mobile-social-icons .social-icon {
    width: 40px;
    height: 40px;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease 0.4s forwards;
}

.mobile-social-icons .social-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.mobile-social-icons .social-icon:nth-child(3) {
    animation-delay: 0.6s;
}

.mobile-social-icons .social-icon:nth-child(4) {
    animation-delay: 0.7s;
}

.mobile-social-icons .social-icon:nth-child(5) {
    animation-delay: 0.8s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.logo-icon {
    width: 2.5rem;
    /* 40px */
    height: 2.5rem;
    /* 40px */
    display: grid;
    place-items: center;
}

.logo-inner img {
    width: 140px;
    height: 140px;
    object-fit: cover;
}

.logo-text {
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    font-weight: bold;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: white;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: black;
}

.desktop-btn {
    display: block;
}

.mobile-btn {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    position: relative;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 40px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 18px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 26px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.mobile-menu-content a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    transition: all 0.3s;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease forwards;
}

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

.mobile-menu-content .mobile-btn {
    margin-top: 1rem;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease 0.3s forwards;
}

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

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 3rem 3rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

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

.hero-watermark h2 {
    font-size: 12vw;
    font-weight: 300;
    letter-spacing: -0.05em;
    opacity: 0.1 !important;
    text-transform: uppercase;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-title-box h1 {
    line-height: 0.9;
    color: white;
    font-size: 75px;
}

.hero-cta {
    text-align: right;
    max-width: 300px;
}

.hero-cta p {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-primary {
    background: white;
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--primary);
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.icon-circle:hover {
    background: white;
    color: black;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-left {
    grid-column: span 6;
}

.about-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    height: 100%;
}

.about-right {
    grid-column: span 6;
    position: relative;
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-right h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.about-right h2 span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.about-right p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 100%;
}

.img-box {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    filter: grayscale(1);
    transition: filter 1s;
    cursor: pointer;
}

.img-box:hover {
    filter: grayscale(0);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.bg-amp {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Italiana', serif;
    font-size: 15rem;
    color: var(--primary);
    opacity: 0.1;
    z-index: -1;
}

@media (max-width: 992px) {

    .about-left,
    .about-right {
        grid-column: span 1;
    }

    .about-right {
        padding-left: 0;
        text-align: center;
    }

    .about-right p {
        margin: 0 auto;
    }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #050505;
    position: relative;
}

.sticky-title {
    position: sticky;
    top: 10rem;
    font-size: clamp(5rem, 10vw, 9rem);
    text-transform: uppercase;
    line-height: 0.8;
    letter-spacing: -0.06em;
    font-weight: 200;
    opacity: 0.8;
}

.services-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card {
    padding: 3rem 0;
    background: transparent;
    display: grid;
    grid-template-columns: 0.5fr 2fr 1.5fr;
    align-items: center;
    gap: 2.5rem;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
}

.service-number {
    font-size: 1.2rem;
    font-family: 'Italiana', serif;
    color: var(--primary);
    opacity: 0.6;
}

.service-card h3 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s;
}

.service-card p {
    font-size: 0.9rem;
    opacity: 0.4;
    max-width: 450px;
    transition: opacity 0.6s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual {
    width: 300px;
    height: 180px;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.6s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover h3 {
    transform: translateX(30px);
    color: var(--primary);
}

.service-card:hover p {
    opacity: 0.8;
    transform: translateX(30px);
}

.service-card:hover .service-visual img {
    filter: grayscale(0);
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    /* .service-visual {
        display: none;
    } */

    .service-card {
        grid-template-columns: auto 1fr auto;
        padding: 4rem 1rem;
    }
}

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

    .sticky-title {
        position: relative;
        top: 0;
        font-size: 4rem;
        margin-bottom: 3rem;
    }

    .service-card h3 {
        font-size: 2rem;
    }

    .service-number {
        display: none;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.portfolio-header h2 {
    font-size: 5rem;
    text-transform: uppercase;
}

.portfolio-header h2 span {
    font-family: 'Italiana', serif;
    font-style: italic;
    color: var(--primary);
}

.portfolio-header p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    position: relative;
    height: 600px;
    border-radius: 2rem;
    overflow: hidden;
}

.mt-offset {
    margin-top: 3rem;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.project-info {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    z-index: 2;
}

.project-info p {
    color: var(--primary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    font-size: 2rem;
    color: white;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: #050505;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.blog-header h2 {
    font-size: 5rem;
    text-transform: uppercase;
}

.blog-header h2 span {
    font-family: 'Italiana', serif;
    font-style: italic;
    color: var(--primary);
}

.blog-header p {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.6s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(222, 203, 170, 0.3);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.6s;
}

.blog-card:hover img {
    filter: grayscale(0);
}

.blog-info {
    padding: 2rem;
}

.blog-date {
    color: var(--primary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

.blog-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.blog-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(13, 13, 13, 0.8) 0%,
            rgba(13, 13, 13, 0.6) 50%,
            rgba(13, 13, 13, 0.8) 100%);
    z-index: 1;
}

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

.contact-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    margin-bottom: 3rem;
    line-height: 1;
    font-weight: 300;
}

.contact-form-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 0.75rem;
    border-radius: 6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
}

.contact-input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    padding: 1.5rem 3rem;
    width: 100%;
    font-family: inherit;
    font-size: 1.1rem;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.contact-btn {
    background: var(--primary);
    color: black;
    border: none;
    padding: 1.5rem 4rem;
    border-radius: 5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn:hover {
    background: white;
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .contact-form-box {
        flex-direction: row;
        padding: 0.6rem;
    }

    .contact-btn {
        width: auto;
        white-space: nowrap;
        margin: 0 20px;
    }
}

/* Footer */
.footer {
    padding: 3rem 3rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

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

.logo-icon-small {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.footer-contact-item i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--primary);
}

/* .footer-links {
    display: flex;
    gap: 3rem;
} */

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    opacity: 0.5;
    transition: color 0.3s;
    border-right: 1px solid #fff;
    padding-right: 12px;
    margin-right: 12px;
}

.footer-links a:last-child {
    border-right: none;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer p {
    font-size: 14px;
    letter-spacing: 0.3em;
    opacity: 0.5;
}

/* Animations */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
}

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

    .hero-title-box h1 {
        font-size: 60px;
    }

    .about-center h2 {
        font-size: 4rem;
    }
}

@media (max-width: 1200px) {
    .grid-12 {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }

    .about-left {
        grid-column: span 3;
    }

    .about-center {
        grid-column: span 2;
    }

    .about-right {
        grid-column: span 3;
    }

    .service-card {
        grid-template-columns: auto 1fr 1fr;
        padding: 3rem 1rem;
        gap: 1.5rem;
    }

    .service-visual {
        width: 250px;
        height: 150px;
    }

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

    .project-card {
        height: 500px;
    }

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

@media (max-width: 992px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 6rem 2rem 2rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

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

    .cta-actions {
        justify-content: center;
    }

    .hero-title-box h1 {
        font-size: 50px;
        text-align: center;
    }

    .about {
        padding: 4rem 0;
    }

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

    .about-left,
    .about-center,
    .about-right {
        grid-column: span 1;
    }

    .about-left {
        order: 2;
    }

    .about-center {
        order: 1;
        padding-top: 0;
    }

    .about-right {
        order: 3;
    }

    .services {
        padding: 6rem 0;
    }

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

    .sticky-title {
        position: relative;
        top: 0;
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .portfolio {
        padding: 4rem 0;
    }

    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .portfolio-header h2 {
        font-size: 4rem;
    }

    .blog {
        padding: 4rem 0;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .blog-header h2 {
        font-size: 4rem;
    }

    .contact {
        padding: 6rem 0;
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .logo-inner img {
        width: 100px;
        height: 100px;
    }

    .desktop-btn {
        display: none;
    }

    .social-icons {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-right: 1rem;
    }

    .mobile-btn {
        display: block;
    }

    .hero {
        padding: 5rem 1.5rem 2rem;
        height: 100vh;
    }

    .hero-watermark {
        margin-top: 2rem;
    }

    .hero-watermark h2 {
        font-size: 20vw;
    }

    .hero-title-box h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .hero-cta p {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
    }

    .icon-circle {
        width: 2.5rem;
        height: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .about {
        padding: 3rem 0;
    }



    .about-center h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }

    .bg-amp {
        font-size: 10rem;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .about-left .glass-card {
        top: 35%;
        left: 5%;
        max-width: 200px;
    }

    .about-right .glass-card {
        bottom: 15%;
        right: 5%;
        max-width: 200px;
    }

    .services {
        padding: 4rem 0;
    }

    .service-card {
        padding: 2rem 0;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .service-content {
        order: 1;
    }

    .service-visual {
        order: 2;
        width: 100%;
        height: 200px;
        justify-self: stretch;
        border-radius: 1rem;
    }

    .service-card h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        opacity: 0.7;
        margin-bottom: 1.5rem;
    }

    .service-number {
        display: block;
        font-size: 1rem;
        margin-bottom: 1rem;
        opacity: 0.8;
    }

    .portfolio {
        padding: 3rem 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        height: 400px;
    }

    .mt-offset {
        margin-top: 0;
    }

    .portfolio-header h2 {
        font-size: 3rem;
    }

    .blog {
        padding: 3rem 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-header h2 {
        font-size: 3rem;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .contact-form-box {
        flex-direction: column;
        padding: 1rem;
        border-radius: 2rem;
    }

    .contact-input {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .contact-btn {
        padding: 1.2rem 2rem;
        border-radius: 2rem;
        margin: 0;
    }

    .footer {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-contact {
        gap: 1rem;
    }

    .footer-contact-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-contact-item a {
        font-size: 13px;
    }

    .contact-details {
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links a {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .logo-inner img {
        width: 80px;
        height: 80px;
    }

    .mobile-social-icons {
        gap: 0.75rem;
    }

    .mobile-social-icons .social-icon {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-watermark {
        margin-top: 3rem;
    }

    .hero-title-box h1 {
        font-size: 32px;
    }

    .hero-watermark h2 {
        font-size: 25vw;
    }

    .container {
        padding: 0 1rem;
    }

    .about-center h2 {
        font-size: 2.5rem;
    }

    .bg-amp {
        font-size: 8rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .about-left .glass-card,
    .about-right .glass-card {
        max-width: 180px;
    }

    .service-card {
        padding: 2rem 0;
        gap: 1rem;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }

    .service-visual {
        height: 180px;
    }

    .project-card {
        height: 300px;
        border-radius: 1rem;
    }

    .project-info {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .project-info h3 {
        font-size: 1.5rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

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

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

    .sticky-title {
        font-size: 3rem;
    }
}

@media (min-width: 991px) {
    .nav-links {
        display: flex;
    }

    .mobile-social-icons {
        display: none;
    }
}



@media (max-width: 768px) {
    .about-images-grid {
        grid-template-columns: 1fr;
    }

    .about-right h2 {
        font-size: 3rem;
    }
}



/* Page Scroll Progress Indicator - Simple Right Side Circular */
.page-scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid var(--primary);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-scroll-indicator:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(222, 203, 170, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
    background: rgba(13, 13, 13, 0.95);
}

.page-scroll-indicator::before {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    background: conic-gradient(var(--primary) 0deg, var(--primary) 0deg, rgba(255, 255, 255, 0.1) 0deg);
    border-radius: 50%;
    z-index: 1;
}

.page-scroll-indicator::after {
    content: '↑';
    position: absolute;
    color: var(--primary);
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    transition: all 0.3s ease;
    line-height: 1;
}

.page-scroll-indicator:hover::after {
    color: #f4e4c1;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .page-scroll-indicator {
        width: 45px;
        height: 45px;
        right: 15px;
    }

    .page-scroll-indicator::before {
        width: 33px;
        height: 33px;
    }

    .page-scroll-indicator::after {
        font-size: 14px;
    }
}
