:root {
    --bg-color: #11141a;
    /* Deep Dark Navy */
    --text-color: #ffffff;
    --accent-color: #eecfa1;
    /* Fallback Solid */
    --accent-gradient: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    /* Example, but let's use the gold tones */
    --accent-gradient: linear-gradient(135deg, #eecfa1 0%, #c49963 100%);
    --accent-hover: #d4b07e;
    --secondary-bg: #1c212b;
    /* Slightly lighter navy */
    --grey-text: #a0a6b5;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --container-width: 1200px;
    --spacing-section: 120px;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --btn-radius: 50px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* For custom cursor */
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: exclusion;
}

.cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    transition: width 0.3s, height 0.3s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: top 0.1s, left 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

a:hover~.cursor,
a:hover~.cursor-follower {
    transform: scale(1.5);
}

/* Typography & Layout */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-slow);
}

ul {
    list-style: none;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: normal;
    /* Changed from difference to handle color better */
    background: linear-gradient(to bottom, rgba(17, 20, 26, 0.95), transparent);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: var(--font-body);
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
    color: #fff;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition-slow);
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-bg);
    min-width: 250px;
    padding: 1.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: 0.3s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    opacity: 1;
    background: rgba(238, 207, 161, 0.05);
    padding-left: 2.5rem;
}

.nav-links li.dropdown>a i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: 0.3s;
}

.nav-links li.dropdown:hover>a i {
    transform: rotate(180deg);
}

.nav-links li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Luxury Design */
.hero.luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    background: #0a0a0a;
}

.hero.luxury .hero-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1);
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero.luxury .hero-wrapper {
    max-width: 1000px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero.luxury .hero-badge {
    background: transparent;
    border: none;
    padding: 0;
}

.hero.luxury .hero-badge span {
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(238, 207, 161, 0.3);
}

.hero.luxury h1 {
    font-size: 6rem;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1;
    margin: 1rem 0 2rem;
    letter-spacing: -2px;
}

.hero.luxury p {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.hero.luxury .hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
    padding: 2rem 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
}

.hero.luxury .stat-box {
    text-align: center;
}

.hero.luxury .stat-box h4 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.2rem;
}

.hero.luxury .stat-box p {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #fff;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero.luxury h1 {
        font-size: 3.5rem;
    }

    .hero.luxury .hero-stats {
        gap: 2rem;
        padding: 1.5rem 2rem;
    }

    .hero.luxury .stat-box h4 {
        font-size: 1.8rem;
    }
}

/* Hero Alternative Design */
.hero.alt {
    padding-top: 100px;
    background: var(--bg-color);
    display: block;
    height: auto;
    min-height: 100vh;
}

.hero.alt .hero-bg {
    display: none;
    /* Hide old bg */
}

.hero.alt .hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    max-width: 100%;
    padding: 0;
    align-items: stretch;
}

.hero.alt .hero-content {
    padding: 5rem 8% 5rem 8%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero.alt h1 {
    font-size: 5.2rem;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.hero.alt p {
    max-width: 500px;
}

.hero.alt .hero-image-side {
    position: relative;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.hero.alt .hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: transform 10s ease;
}

.hero.alt:hover .hero-image-side img {
    transform: scale(1.1);
}

.hero.alt .floating-experience {
    position: absolute;
    bottom: 50px;
    left: -50px;
    background: var(--accent-color);
    padding: 3rem;
    color: #111;
    z-index: 5;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
}

.hero.alt .floating-experience h3 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero.alt .floating-experience p {
    font-size: 1rem;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0;
}

.hero.alt .experience-box {
    display: none;
    /* Hide old box */
}

@media (max-width: 1024px) {
    .hero.alt .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero.alt .hero-image-side {
        height: 500px;
        order: -1;
    }

    .hero.alt .hero-content {
        padding: 4rem 2rem;
        text-align: center;
        align-items: center;
    }

    .hero.alt .hero h1 {
        font-size: 3.5rem;
    }

    .hero.alt .floating-experience {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 80%;
        text-align: center;
        padding: 2rem;
    }
}

@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    max-width: var(--container-width);
    padding: 0 2rem;
    width: 100%;
}

.experience-box {
    background: rgba(255, 255, 255, 0.08);
    /* Slightly more visible background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #fff;
    padding: 4rem 3rem;
    /* Slightly larger padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 240px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(238, 207, 161, 0.1);
    /* Subtle gold glow */
    border: 1px solid rgba(238, 207, 161, 0.4);
    /* Pronounced gold border */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(238, 207, 161, 0.2);
}

.experience-box i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 10px rgba(238, 207, 161, 0.3));
}

.exp-number {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-body);
    margin-bottom: 0.5rem;
}

.exp-text {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(238, 207, 161, 0.05);
    border: 1px solid rgba(238, 207, 161, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-badge:hover {
    background: rgba(238, 207, 161, 0.1);
    border-color: rgba(238, 207, 161, 0.4);
    transform: translateY(-2px);
}

.hero-badge span {
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.8rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Responsive adjustment for hero buttons */
@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--btn-radius);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
}

/* Primary Button (Gold Gradient Background) */
.btn-primary {
    background: var(--accent-gradient);
    color: #11141a;
    /* Dark text on gold */
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Outline Button (Transparent with Gold Border) */
.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(238, 207, 161, 0.5);
    /* Semi-transparent gold border */
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background-color: rgba(238, 207, 161, 0.1);
}

.btn-dark {
    /* Keeping for compatibility but styling like primary or outline as needed. 
       Let's map it to similar aesthetic 
    */
    background: var(--secondary-bg);
    color: #fff;
    border: 1px solid #333;
    border-radius: var(--btn-radius);
}

.btn-dark:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}


.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: var(--spacing-section) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.placeholder-box {
    width: 100%;
    height: 500px;
    background: #1a1a1a;
    border: 1px solid #333;
    position: relative;
}

.placeholder-box::after {
    content: 'Görsel Alanı';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.about-text p {
    color: var(--grey-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.stat-item h3 {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-body);
}

.stat-item span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--grey-text);
}

/* Projects Section */
.projects {
    background: var(--secondary-bg);
    padding: var(--spacing-section) 0;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--grey-text);
}

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

.project-card {
    position: relative;
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.project-image.placeholder-dark {
    background: #222;
}

.project-image.placeholder-light {
    background: #333;
}

.project-card:hover .project-image {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.project-info {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

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

.project-info span {
    display: block;
    color: var(--grey-text);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.project-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.project-card:hover .project-link {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: rotate(-45deg);
}

/* Services Section */
.services {
    padding: var(--spacing-section) 0;
    background-color: var(--bg-color);
    /* Maintain dark theme contrast */
}

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

.service-card {
    background: var(--secondary-bg);
    padding: 3rem 2rem;
    border: 1px solid #222;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-card i {
    font-size: 3rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    color: var(--grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.4s;
}

.service-card:hover::before {
    width: 100%;
}

/* Blog Section */
.blog {
    padding: var(--spacing-section) 0;
    background-color: var(--secondary-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: var(--bg-color);
    border: 1px solid #222;
    transition: var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.blog-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-content .date {
    font-size: 0.85rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--grey-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-color);
    gap: 1rem;
}

/* Contact Section */
.contact {
    padding: var(--spacing-section) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--grey-text);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-form {
    background: var(--secondary-bg);
    padding: 3rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    background: #1a1a1a;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid #222;
    text-align: center;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials a {
    font-size: 1.5rem;
    color: #fff;
}

.socials a:hover {
    color: var(--accent-color);
}

footer p {
    color: var(--grey-text);
    font-size: 0.9rem;
}

/* Page Header (for subpages) */
.page-header {
    height: 60vh;
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #222;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--grey-text);
}

/* View All Projects Button Container */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.view-all-container .btn {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-container .btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.view-all-container .btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        /* Text on top, Box below */
        gap: 2rem;
        padding-top: 6rem;
    }

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

    .hero h1 {
        font-size: 3rem;
    }

    .experience-box {
        width: 100%;
        max-width: 350px;
        padding: 2rem;
        flex-direction: row;
        /* Horizontal box on mobile? or vertical? Keep vertical for impact */
        gap: 1.5rem;
    }

    .experience-box i {
        font-size: 2.5rem;
        margin: 0;
    }

    .exp-number {
        font-size: 3rem;
        margin: 0;
    }

    .exp-text {
        font-size: 1rem;
        text-align: left;
    }

    /* Make box horizontal on mobile for better space usage? */
    .experience-box {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .placeholder-box {
        height: 300px;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    /* Disable custom cursor on touch */
}

/* --- New Enhancements --- */

.section-tag {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent-color);
    padding: 2rem;
    color: #111;
    z-index: 5;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.about-badge .year {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.process-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.5;
    font-family: var(--font-body);
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #fff;
    color: #111;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 3D Card Effect */
.project-card,
.service-card,
.blog-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
}

.project-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
}

@media (max-width: 768px) {
    .about-badge {
        right: 0;
        bottom: 10px;
        padding: 1.2rem;
    }

    .about-badge .year {
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* --- Additional Premium Touches --- */

/* Page Fade In */
body {
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

body.loaded {
    opacity: 1;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 10001;
}

/* Magnet Effect for Buttons (Simplified) */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300%;
    height: 300%;
}

/* Responsive Navbar height fix */
.navbar {
    transition: background 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
}

/* Mobile Menu Refinement */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid #333;
    }

    .nav-links.mobile-active {
        display: flex;
    }
}

/* FAQ Accordion Styles */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s;
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.faq-header i {
    font-size: 1.5rem;
    transition: 0.3s;
    color: var(--accent-color);
}

.faq-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding-bottom: 2rem;
    color: var(--grey-text);
    line-height: 1.7;
}

.faq-item.faq-open {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(238, 207, 161, 0.2);
}

.faq-item.faq-open .faq-header i {
    transform: rotate(180deg);
}

.faq-item.faq-open .faq-content {
    max-height: 500px;
}

/* Skeleton Loaders */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #252525 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Page Transition Overlay */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.page-loader.loaded {
    transform: translateY(-100%);
}

.loader-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.loader-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    animation: loader-progress 1.5s ease-in-out forwards;
}

@keyframes loader-progress {
    to {
        width: 100%;
    }
}

/* Custom Map Marker Overlay */
.map-container {
    position: relative;
}

.map-container iframe {
    filter: grayscale(1) invert(0.9) contrast(0.85);
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -10px;
    /* Adjusting for center offset */
}

.marker-label {
    background: var(--accent-gradient);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.marker-pin {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 2px solid #000;
}

.marker-pin::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}