/* 
    Besmiri Shpk - Premium Transport & Excavation
    Theme: Industrial Dark & Amber
*/

:root {
    --primary-color: #1a365d;
    /* Navy Blue */
    --secondary-color: #2a4365;
    --accent-color: #c05621;
    /* Brick Orange */
    --accent-hover: #9c4221;
    --gold: #d4af37;
    --white: #ffffff;
    --black: #1a202c;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --light-bg: #f7fafc;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Typography & Utilities */
.hero-pill-subtitle {
    display: inline-block;
    padding: 10px 25px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(216, 68, 32, 0.3);
}

.subtitle {
    display: block;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.accent {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 160, 40, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--light-bg);
    padding: 15px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .mobile-menu-btn {
    color: var(--black);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    width: 100%;
}

.logo {
    font-family: 'Playfair Display', serif;
}

.logo-sticker {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo-sticker i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.logo-sticker .logo-text {
    display: flex;
    flex-direction: column;
    font-weight: 800;
    line-height: 1;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.logo-sticker .logo-text span {
    font-size: 0.8rem;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* Hero Section - Flyer Style */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}


/* Removed hero sticker and title styles as requested */
.hero-logo-sticker i {
    font-size: 2rem;
    color: var(--accent-color);
}

.hero-content-center {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-text-box {
    margin-bottom: 50px;
    animation: fadeInDown 1.2s ease-out;
    text-align: center;
}

.hero-main-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    white-space: nowrap;
}

.hero-main-title span {
    color: var(--gold);
    display: inline;
}

.hero-pill-subtitle {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--gold);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Hero */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 4rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 991px) {
    .hero-content-center {
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-pill-subtitle {
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid var(--gold);
        padding-bottom: 10px;
        display: inline-block;
    }

    .hero-main-title {
        font-size: 3.5rem;
        white-space: normal;
        letter-spacing: 2px;
    }

    .hero-text-box {
        margin-bottom: 20px;
    }

    .hero-flyer-services {
        margin: 20px auto 0;
        max-width: 100%;
        border-left: none;
        border-top: 5px solid var(--gold);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-pill-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero-flyer-services {
        margin-top: 0;
        padding: 20px;
        width: 90%;
        max-width: 400px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-experience-badge-circle {
        position: absolute;
        right: 5px;
        bottom: 5px;
        margin: 0;
        width: 60px;
        height: 60px;
        border-width: 1px;
        z-index: 20;
    }

    .hero-experience-badge-circle .num {
        font-size: 0.8rem;
    }

    .hero-text-box {
        margin-bottom: 5px;
    }



    .hero-experience-badge-circle .txt {
        font-size: 0.55rem;
    }

    .hero-container {
        justify-content: center;
        height: auto;
    }

    .container {
        padding: 0 20px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .about-features {
        padding-left: 0;
    }

    .about-stats {
        grid-template-columns: 1fr !important;
    }

    .contact-info-panel {
        padding: 40px 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
}

.hero-flyer-services {
    background: rgba(11, 36, 71, 0.85);
    backdrop-filter: blur(15px);
    color: white;
    padding: 45px;
    border-top: 5px solid var(--gold);
    border-left: none;
    width: 100%;
    max-width: 450px;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s ease-out 0.3s both;
    margin: 40px auto 0;
}

.hero-flyer-services ul {
    list-style: none;
    margin-bottom: 30px;
}

.hero-flyer-services li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-flyer-services li i {
    color: var(--gold);
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(197, 160, 40, 0.3);
    margin-top: 25px;
    width: 100%;
}

.hero-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 40, 0.5);
    background: white;
    color: var(--primary-color);
}

.hero-cta-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
    transform: translateX(5px);
}

.hero-experience-badge-circle {
    position: absolute;
    bottom: 40px;
    right: 10px;
    width: 140px;
    height: 120px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 8px rgba(11, 36, 71, 0.3), 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 15;
    animation: scaleIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s both;
}

.hero-experience-badge-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(197, 160, 40, 0.5);
    border-radius: 50%;
}

.hero-experience-badge-circle .num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-experience-badge-circle .txt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2px 0;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .hero-main-title {
        font-size: 3rem;
    }
}

/* Services */
.services {
    padding: 140px 0;
    background-color: var(--light-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.service-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hero-bg-left::after,
.hero-bg-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

/* Darker overlay on the right to hide people/noise */
.hero-bg-right::after {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img img {
    transform: scale(1.15) rotate(2deg);
}

.service-content {
    padding: 35px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.service-card:hover .service-link {
    opacity: 1;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Portfolio */
.portfolio {
    padding: 120px 0;
    background-color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 350px;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 0 5px var(--primary-color), 0 30px 60px rgba(26, 54, 93, 0.3);
}

.project-img {
    width: 100%;
    height: 100%;
}

.project-img img,
.project-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 40px;
}

.portfolio-item:hover .project-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.portfolio-item:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    text-align: center;
    transform: translateY(30px);
    transition: var(--transition);
}

.portfolio-item:hover .project-info {
    transform: translateY(0);
}

.project-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.project-info h4 {
    color: var(--white);
    font-size: 2rem;
    margin-top: 15px;
}

.play-btn {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.4);
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 180, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 180, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 180, 0, 0);
    }
}

.play-btn:hover {
    transform: scale(1.1);
    background-color: var(--white);
    color: var(--accent-color);
    animation: none;
}

/* About */
.about {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 30px 30px 0px rgba(11, 36, 71, 0.05);
    border: 8px solid white;
    transition: var(--transition);
}

.about-img:hover img {
    transform: translate(-10px, -10px);
    box-shadow: 40px 40px 0px rgba(11, 36, 71, 0.08);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(197, 160, 40, 0.4);
    border: 5px solid white;
    z-index: 5;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 1px;
}


.about-content {
    padding-left: 20px;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 900;
}

.about-features {
    list-style: none;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.about-features li i {
    color: var(--gold);
    font-size: 1.3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-img img {
        box-shadow: 15px 15px 0px rgba(11, 36, 71, 0.05);
    }

    .about-content {
        padding: 40px 20px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .about-stats {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }

    .experience-badge {
        padding: 20px;
        bottom: -15px;
        right: -15px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

/* Contact */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info-panel {
    background-color: var(--light-bg);
    padding: 60px 80px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    width: 100%;
}

.info-card i {
    font-size: 1.6rem;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 5px;
}

.info-card p,
.info-card p a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}

.info-card p a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--white);
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background-color: var(--light-bg);
    border: 1px solid #e2e8f0;
    color: var(--black);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 160, 40, 0.1);
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--light-bg);
    border-top: 1px solid #e2e8f0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.4s;
}

.delay-2 {
    animation-delay: 0.8s;
}

.delay-3 {
    animation-delay: 1.2s;
}

.delay-4 {
    animation-delay: 1.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsive --- */

@media (max-width: 1200px) {
    .hero-text-box h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-text-box h1 {
        font-size: 2.8rem;
    }

    .hero-text-box p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
        background-color: var(--light-bg);
        border-bottom: 1px solid #e2e8f0;
    }

    .navbar .logo {
        color: var(--white);
    }

    .navbar .mobile-menu-btn {
        color: var(--white);
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: var(--light-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 15px 0;
        color: var(--white);
    }


    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-item {
        height: 350px;
    }

    .project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
        align-items: flex-end;
        padding: 20px;
    }

    .project-info {
        transform: translateY(0);
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .play-btn {
        margin: 0;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .experience-badge {
        padding: 20px;
        bottom: -20px;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: fit-content;
    }

    .about-stats {
        gap: 30px;
        margin-top: 30px;
    }

    .modal-controls {
        top: -45px;
        right: 10px;
    }

    .close-modal,
    .fullscreen-modal {
        font-size: 1.8rem;
    }

    .fullscreen-modal {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }

    .modal-content {
        padding: 0 5px;
    }

    .modal-controls {
        top: -40px;
        gap: 15px;
    }

    .close-modal,
    .fullscreen-modal {
        font-size: 1.6rem;
    }

    .portfolio-item {
        height: 300px;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    z-index: 1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 50px rgba(255, 180, 0, 0.2);
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-controls {
    position: absolute;
    top: -50px;
    right: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 10;
}

.close-modal,
.fullscreen-modal {
    font-size: 2.2rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.fullscreen-modal {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover,
.fullscreen-modal:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.fullscreen-modal:hover {
    background: rgba(255, 180, 0, 0.2);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

.inline-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    background: #000;
}

.portfolio-item.video-playing .project-overlay {
    opacity: 0;
    pointer-events: none;
}

.portfolio-item.video-playing:hover .project-overlay {
    opacity: 1;
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.4);
}

.portfolio-item.video-playing .play-btn {
    display: none;
}

.inline-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 10;
    opacity: 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.portfolio-item.video-playing:hover .inline-controls,
.portfolio-item.video-playing:active .service-content {
    padding: 30px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.portfolio-item.video-playing:hover .inline-controls,
.portfolio-item.video-playing:active .inline-controls {
    opacity: 1;
    pointer-events: auto;
}

.inline-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.inline-btn:hover {
    transform: scale(1.1);
    background: var(--white);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .inline-controls {
        opacity: 1;
        /* Always show controls on mobile when playing */
        background: transparent;
        pointer-events: auto;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 15px;
        gap: 15px;
    }

    .inline-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}