/* Global Reset & Variables */
:root {
    --bg-color: #0a0a0a;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #D4AF37;
    /* Gold */
    --accent-glow: rgba(212, 175, 55, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: var(--transition);
    margin-left: 15px;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-primary);
    background: none;
    /* Reset gradient */
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    -webkit-background-clip: border-box;
}

.section-header h2 .highlight {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    /* Or keep it white/gold */
    background: linear-gradient(to right, #D4AF37, #FDB931);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line-break {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 25px;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    top: -20;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--accent);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-primary);
}

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

.nav-links .btn-primary {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    /* Add mobile menu logic later if needed */
    cursor: pointer;
}

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

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 0.4;
    /* Match the previous background opacity */
}

.text-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: -1;
}

.hero-content h1 {
    font-size: 6rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-gradient-text {
    background: linear-gradient(120deg, #ffffff 0%, #D4AF37 60%, #FDB931 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 45px;
    max-width: 700px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-image .placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    background: linear-gradient(120deg, #ffffff 0%, #D4AF37 60%, #FDB931 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-row: span 2;
    height: 620px;
}

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

.portfolio-item .placeholder-img-s {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .overlay {
    transform: translateY(0);
}

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

.overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.overlay p {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Studio Highlight */
.studio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.studio-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.studio-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.studio-features {
    margin-bottom: 30px;
}

.studio-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.studio-features li::before {
    content: '•';
    color: var(--accent);
    margin-right: 10px;
    font-size: 1.5rem;
}

.studio-visual {
    position: relative;
    perspective: 1000px;
}

.studio-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.studio-img-link img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.studio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.studio-overlay span {
    font-size: 1.2rem;
    color: #fff;
    border: 1px solid var(--accent);
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.studio-img-link:hover {
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.15);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.studio-img-link:hover img {
    transform: scale(1.05);
}

.studio-img-link:hover .studio-overlay {
    opacity: 1;
}

.studio-img-link:hover .studio-overlay span {
    transform: translateY(0);
}

/* Testimonials */
.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-left: 2px solid var(--accent);
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.testimonial-card h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.footer-brand span {
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-icons a:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

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

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

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

/* About Page Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero-slide-web.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: -80px;
    /* Offset fixed navbar if any, though navbar here is static/sticky logic dependant */
    padding-top: 80px;
}

/* Handle navbar overlap if necessary, or just rely on structure. 
   In index.html hero usage: navbar is inside? No, separate. 
   Standard .hero uses 100vh. 
   Let's ensure .about-hero covers the top correctly.
*/

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.softkamck-badge {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    border: 1px solid var(--accent);
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.softkamck-badge:hover {
    background: var(--accent);
    color: #000;
}

.about-section {
    padding: 120px 0;
    background: var(--bg-color);
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.service-flex {
    display: flex;
    gap: 80px;
    /* Increased gap */
    align-items: flex-start;
    /* Align top for better reading flow */
    padding: 40px 0;
}

.service-info {
    flex: 1;
    position: relative;
}

/* Premium Typography for Service Title */
.service-info h2 {
    font-size: 2.5rem;
    /* Larger */
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

/* Subtitle styling */
.service-info h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 90%;
}

/* Premium Feature List */
.feature-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Two columns if space permits */
    gap: 15px 30px;
}

.feature-list li {
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
    color: #e0e0e0;
    font-weight: 300;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Pricing Section - Integrated */
.service-pricing {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle gold border */
    border-left: 4px solid var(--accent);
    border-radius: 4px;
    /* Sharper corners for premium feel */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.service-pricing h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    font-size: 2rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0;
}

.price-suffix {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Visual */
.service-visual {
    flex: 0 0 40%;
    max-width: 450px;
    position: relative;
}

/* Decorative frame adjustment */
.service-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
    transition: var(--transition);
}

.service-visual:hover::before {
    top: -10px;
    right: -10px;
    border-color: var(--accent);
}

.service-visual img {
    width: 100%;
    height: auto;
    min-height: 450px;
    /* Taller */
    object-fit: cover;
    border-radius: 2px;
    -webkit-filter: inherit;
    filter: inherit;
    /* Reset specific filters if any */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-visual:hover img {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .service-flex {
        flex-direction: column;
        gap: 40px;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-visual {
        width: 100%;
        max-width: 100%;
        flex: auto;
        order: -1;
        /* Image first on mobile */
    }

    .service-visual::before {
        display: none;
        /* Hide decorative border on mobile */
    }

    .service-visual img {
        min-height: 250px;
    }
}

.about-visual img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .studio-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .studio-features li {
        justify-content: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
        /* Image first on mobile for visually rich feel */
    }
}

/* Partnership Philosophy Styling */
.partnership-list {
    list-style: none;
    margin-top: 30px;
}

.partnership-list li {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--accent);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.partnership-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.partnership-list strong {
    display: block;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}


@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 85vh;
        padding-top: 150px;
        padding-bottom: 80px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: #111;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
    cursor: pointer;
    transition: color 0.3s;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.modal-title-overlay {
    position: absolute;
    bottom: 20px;
    left: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.modal-title-overlay h2 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0;
    font-family: var(--font-heading);
}

.modal-body {
    padding: 40px;
    color: var(--text-secondary);
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-section-title {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-top: 30px;
}

.modal-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-list li {
    position: relative;
    padding-left: 25px;
    color: #ddd;
}

.modal-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(212, 175, 55, 0.05);
}

.pricing-tier {
    font-size: 1rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.pricing-amount {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.modal-actions {
    text-align: center;
    margin-top: 50px;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {

    /* Mobile Navigation Styles */
    body {
        overflow-x: hidden;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0px;
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* Changed from center to prevent clipping */
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 9999;
        /* Max z-index */
        padding-top: 100px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    /* Reset navbar filter to prevent fixed position containing block issues on mobile */
    .navbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 10, 0.95);
        /* Solid backgroun for mobile readability */
    }

    .nav-links li {
        margin: 20px 0;
        /* Reduced margin slightly */
        opacity: 0;
    }

    .nav-links li a {
        font-size: 1.8rem;
        /* Larger, clickable links */
        font-family: var(--font-heading);
        color: var(--text-primary);
        /* Ensure high contrast */
        letter-spacing: 1px;
    }

    .hamburger {
        display: block;
        z-index: 10000;
        /* Must be above everything */
        margin-right: 0;
        cursor: pointer;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background-color: var(--text-primary);
        transition: all 0.3s ease;
    }

    /* Toggle Classes */
    .nav-active {
        transform: translateX(0%);
    }

    .toggle span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle span:nth-child(2) {
        opacity: 0;
    }

    .toggle span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Responsive Improvements */
    .hero-content h1,
    .about-hero h1,
    .cap-hero h1,
    .process-hero h1,
    .service-page-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    /* Fix for inner page hero sections overlapping with navbar on mobile */
    .about-hero,
    .service-page-hero,
    .process-hero,
    .cap-hero {
        padding-top: 150px;
        height: auto;
        min-height: 50vh;
        padding-bottom: 60px;
    }


    .hero-content p,
    .cap-hero p,
    .process-hero p {
        font-size: 1rem;
        padding: 0 10px;
        max-width: 100%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
        padding: 0 10px;
    }

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

    .portfolio-item.large {
        grid-row: auto;
        height: 300px;
    }

    .card-image {
        height: 180px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-icons {
        justify-content: center;
    }

    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .studio-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .modal-list {
        grid-template-columns: 1fr;
    }

    .modal-header {
        height: 150px;
    }

    .modal-title-overlay h2 {
        font-size: 1.8rem;
    }

    /* Service Page Mobile Tweaks */
    .service-flex {
        gap: 40px;
    }

    .service-visual {
        min-height: 250px;
    }

    /* Process Page Mobile Tweaks */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        /* Force single column on mobile */
    }

    /* Fix Contact Button in Mobile Menu */
    .nav-links .btn-primary {
        margin-top: 10px;
        font-size: 1.2rem;
        padding: 15px 40px;
        display: inline-block;
        width: auto;
    }
}

/* Extra Small Devices (Phones, < 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1,
    .about-hero h1,
    .cap-hero h1,
    .process-hero h1,
    .service-page-hero h1 {
        font-size: 2rem;
        /* Even smaller for small phones */
    }

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

    .softkamck-badge {
        font-size: 0.8rem;
        /* Smaller badge text */
        padding: 10px 20px;
        white-space: normal;
        /* Allow wrapping */
        line-height: 1.4;
    }

    .footer-brand h2 {
        font-size: 1.8rem;
    }

    .footer-top {
        gap: 30px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        /* Full width buttons on mobile */
        text-align: center;
        margin-left: 0;
        margin-bottom: 10px;
        padding: 15px 0;
    }

    /* Ensure modal fits on small screens */
    .modal-content {
        margin: 10% auto;
        /* More margin top */
        width: 95%;
    }

    .pricing-tier {
        font-size: 0.9rem;
    }

    .pricing-amount {
        font-size: 1.5rem;
    }

    /* Partnership List Styles (About & Process Page) */
    .partnership-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .partnership-list li {
        margin-bottom: 25px;
        position: relative;
        padding-left: 0px;
    }

    .partnership-list li strong {
        display: block;
        color: var(--accent);
        font-size: 1.1rem;
        margin-bottom: 5px;
        font-family: var(--font-heading);
    }
}


@keyframes slideInX {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 1000px;
    /* Limit width */
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 60px;
    /* Bottom padding for dots */
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    /* Space between slides */
}

.slide {
    flex: 0 0 100%;
    /* Default 1 slide per view */
    min-width: 100%;
}

@media (min-width: 768px) {
    .slide {
        flex: 0 0 calc(50% - 10px);
        /* 2 slides */
        min-width: calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .slide {
        flex: 0 0 calc(33.33% - 14px);
        /* 3 slides */
        min-width: calc(33.33% - 14px);
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent);
    border: 1px solid var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent);
    color: #000;
}

.slider-arrow:hover svg {
    fill: #000;
}

.prev-arrow {
    left: 0;
}

.slider-arrow:hover svg {
    fill: #000;
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* Hero Slideshow Arrow */
/* Hero Slideshow Arrow */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.prev-hero-arrow {
    left: 20px;
}

.next-hero-arrow {
    right: 20px;
}

.hero-arrow svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
    transition: fill 0.3s ease;
}

.hero-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-arrow:hover svg {
    fill: #000;
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .prev-hero-arrow {
        left: 10px;
    }

    .next-hero-arrow {
        right: 10px;
    }

    .hero-arrow svg {
        width: 24px;
        height: 24px;
    }
}