        :root {
            --primary-red: #FF0000;
            --dark-red: #CC0000;
            --light-red: #FFEEEE;
            --white: #FFFFFF;
            --black: #000000;
            --gray: #1A1A1A;
            --light-gray: #F5F5F5;
            --accent: #FF3366;
            --neon-red: #FF0040;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--gray);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--dark-red);
        }

        /* Loading Screen */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-red);
            margin-bottom: 20px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .loader-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
        }

        .loader-progress {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--primary-red), var(--accent));
            border-radius: 2px;
            animation: loading 2s ease-in-out infinite;
        }

        @keyframes loading {
            0% { width: 0; }
            50% { width: 70%; }
            100% { width: 100%; }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(0, 0, 0, 0.9);
            box-shadow: 0 5px 20px rgba(255, 0, 0, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            letter-spacing: 1px;
            color: var(--primary-red);
            text-decoration: none;
        }

        .logo-img {
            height: 45px;        /* atur tinggi sesuai navbar */
            width: auto;
            object-fit: contain;
            display: block;
        }

        .logo-text {
            margin-left: 10px;
            color: var(--primary-red);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-red);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../../assets/images/JRC.png') center/cover no-repeat;
            filter: grayscale(20%) contrast(1.2);
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(255,0,0,0.2) 100%);
            z-index: -1;
        }

        .hero-content {
            max-width: 1200px;
            padding: 0 20px;
            text-align: center;
            z-index: 1;
        }

        .hero-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 4vw, 6rem); /* Nilai yang jauh lebih kecil */
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--white), var(--primary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px var(--primary-red), 0 0 20px var(--primary-red); }
            to { text-shadow: 0 0 20px var(--primary-red), 0 0 30px var(--primary-red); }
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 300;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--primary-red);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
        }

        .btn-primary:hover {
            background: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--primary-red);
        }

        .btn-secondary:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--gray);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,0,0,0.05)" stroke-width="1"/></svg>');
            z-index: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            font-family: 'Orbitron', monospace;
            font-size: 1rem;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            position: relative;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--primary-red);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature i {
            color: var(--primary-red);
            font-size: 1.2rem;
        }

        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 700px; /* Ukuran maksimal di layar besar */
            aspect-ratio: 16/9; /* Rasio aspek modern */
            margin: 2rem auto; /* Spasi atas/bawah */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; /* Menjaga rasio aspek */
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .about-image:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .about-image:hover img {
            transform: scale(1.08);
        }

        .about-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(255,0,0,0.15) 0%, 
                rgba(255,0,0,0.05) 50%,
                rgba(255,0,0,0) 100%);
            pointer-events: none; /* Agar tidak mengganggu interaksi */
        }

        /* Tablet dan layar medium */
        @media (max-width: 992px) {
            .about-image {
                max-width: 600px;
                margin: 1.5rem auto;
                border-radius: 10px;
            }
        }

        /* Mobile dan layar kecil */
        @media (max-width: 768px) {
            .about-image {
                max-width: 100%;
                aspect-ratio: 4/3; /* Rasio lebih kotak untuk mobile */
                margin: 1rem auto;
                border-radius: 8px;
            }
            
            .about-image:hover {
                transform: translateY(-5px);
            }
            
            .about-image:hover img {
                transform: scale(1.05);
            }
        }

        /* Mobile sangat kecil */
        @media (max-width: 480px) {
            .about-image {
                aspect-ratio: 3/2; /* Rasio lebih tinggi untuk mobile kecil */
                margin: 0.8rem auto;
                border-radius: 6px;
            }
            
            .about-image::after {
                background: linear-gradient(135deg, 
                    rgba(255,0,0,0.1) 0%, 
                    rgba(255,0,0,0.03) 50%,
                    rgba(255,0,0,0) 100%);
            }
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--black);
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(0,0,0,0.9) 100%);
            border: 1px solid rgba(255, 0, 0, 0.2);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,0,0,0.1) 0%, rgba(255,0,0,0) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-red);
            box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 100px 0;
            background: var(--gray);
            position: relative;
        }

        .portfolio-filter {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--white);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(255,0,0,0.3) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-category {
            font-size: 0.9rem;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .portfolio-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .portfolio-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--black);
            position: relative;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.3s ease;
            gap: 20px;   /* 👉 tambahan jarak antar slide */
        }

        .testimonial-card {
            min-width: 100%;
            padding: 23px 25px;
            background: linear-gradient(135deg, rgba(26,26,26,0.8) 0%, rgba(0,0,0,0.9) 100%);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 0, 0.2);
            position: relative;
            margin-right: 0;
        }

        .testimonial-content {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            padding-left: 30px;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 0;
            font-size: 4rem;
            color: var(--primary-red);
            font-family: Georgia, serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            border: 2px solid var(--primary-red);
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.7);
        }

        .rating {
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: var(--primary-red);
            transform: scale(1.2);
        }

        /* ===============================
        Contact / Add Review Section
        =================================*/
        .contact {
            position: relative;
            padding: 100px 0;
            background: var(--gray);
        }

        .contact-container {
            display: flex;
            justify-content: center;   /* selalu center */
            align-items: center;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-right: 20px;
            min-width: 30px;
        }

        .contact-text h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .contact-text p {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Contact Form */
        .contact-form {
            width: 100%;
            max-width: 650px;
            padding: 50px;
            border-radius: 15px;
            background: linear-gradient(
                135deg,
                rgba(26, 26, 26, 0.8) 0%,
                rgba(0, 0, 0, 0.9) 100%
            );
            border: 1px solid rgba(255, 0, 0, 0.2);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Input, Textarea, Select */
        .form-control {
            width: 100%;
            padding: 15px;
            font-size: 1rem;
            font-family: 'Rajdhani', sans-serif;
            color: var(--white);
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-red);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Textarea */
        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* Select */
        select.form-control {
            appearance: none;              /* hilangin panah default */
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            padding-right: 40px;           /* ruang buat panah custom */
        }

        /* Opsi dropdown */
        select.form-control option {
            background: var(--gray);
            color: var(--white);
            padding: 10px;
        }


        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .chat-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-red);
            color: var(--white);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
        }

        .chat-box {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 350px;
            height: 450px;
            background: var(--gray);
            border-radius: 15px;
            border: 1px solid rgba(255, 0, 0, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: none;
            flex-direction: column;
            overflow: hidden;
        }

        .chat-box.active {
            display: flex;
        }

        .chat-header {
            background: var(--primary-red);
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            font-size: 1.2rem;
        }

        .chat-close {
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .chat-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .chat-message {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 15px;
            line-height: 1.4;
        }

        .chat-message.bot {
            background: rgba(255, 255, 255, 0.1);
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }

        .chat-message.user {
            background: var(--primary-red);
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .chat-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .chat-input input {
            flex: 1;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: var(--white);
            margin-right: 10px;
        }

        .chat-input button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-red);
            border: none;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Footer */
        footer {
            background: var(--black);
            padding: 80px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .footer-about h3 {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary-red);
        }

        .footer-about p {
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--white);
            border-radius: 50%;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            background: var(--primary-red);
            transform: translateY(-5px);
            border-color: var(--primary-red);
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--primary-red);
            bottom: 0;
            left: 0;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links ul li a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }

        .footer-contact h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--primary-red);
            bottom: 0;
            left: 0;
        }

        .footer-contact p {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: flex-start;
        }

        .footer-contact i {
            margin-right: 15px;
            color: var(--primary-red);
            min-width: 20px;
            margin-top: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .chat-box {
                width: 300px;
                height: 400px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-links h3::after,
            .footer-contact h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

 /* Owner Response */
.owner-response {
    margin-top: 15px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
}

.response-header {
    margin-bottom: 5px;
}

.response-label {
    font-weight: bold;
    font-size: 0.9em;
    color: var(--primary-red);
}

.response-content {
    font-size: 0.95em;
    margin: 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}