/* ==========================================================================
   PT MAJU KONSTRUKSI INDONESIA (HUMAIRA KONSTRUKSI ENJINIRING)
   STYLE.CSS - MODERN REDESIGN
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
    --primary-slate: #0f172a;    /* Slate 900 */
    --primary-light: #f8fafc;    /* Slate 50 */
    --text-dark: #1e293b;        /* Slate 800 */
    --text-muted: #475569;       /* Slate 600 */
    --text-light: #f1f5f9;       /* Slate 100 */
    
    --accent-gold: #d97706;      /* Amber 600 */
    --accent-gold-hover: #b45309;/* Amber 700 */
    --accent-gold-light: #fef3c7;/* Amber 100 */
    
    --gold-gradient: linear-gradient(135deg, #d97706 0%, #fbbf24 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --glass-navbar: rgba(15, 23, 42, 0.75);
    --glass-card: rgba(255, 255, 255, 0.85);
    
    --font-primary: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 25px 60px -15px rgba(15, 23, 42, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Global resets & styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-light);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 2px solid var(--primary-light);
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Utility Components */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-slate);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background: var(--primary-slate);
    color: var(--text-light);
    padding: 12px 0;
    font-size: 13.5px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    position: relative;
}

.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

.topbar span i {
    color: var(--accent-gold);
}

.topbar a {
    color: #94a3b8;
    margin-left: 20px;
    font-size: 15px;
    display: inline-block;
}

.topbar a:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    background: transparent;
    padding: 24px 0;
    transition: var(--transition-smooth);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    top: 45px; /* Sits below the topbar on load for desktop */
}

.navbar.scrolled {
    background: var(--glass-navbar);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 16px 0;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    top: 0; /* Moves to absolute top when scrolled */
}

.navbar-brand {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-brand span {
    color: var(--accent-gold);
    position: relative;
}

.navbar-brand sub-text {
    font-weight: 300;
    color: #ffffff;
}

.navbar-nav li {
    margin-left: 30px;
    position: relative;
}

.navbar-nav li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0 !important;
    position: relative;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
    color: #ffffff !important;
}

.navbar-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

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

.menu-btn {
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 20px;
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-gold);
}

/* ==========================================================================
   SIDEBAR & OVERLAY
   ========================================================================== */
.sidebar {
    width: 340px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -340px;
    background: var(--primary-slate);
    z-index: 10000;
    transition: var(--transition-smooth);
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar.active {
    right: 0;
}

.sidebar .close-btn {
    align-self: flex-end;
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.sidebar .close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.sidebar ul {
    margin-top: 50px;
}

.sidebar ul li {
    margin-bottom: 24px;
}

.sidebar ul li a {
    color: #e2e8f0;
    font-size: 20px;
    font-weight: 600;
    display: block;
    transition: var(--transition-fast);
}

.sidebar ul li a:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
}

.sidebar-contact {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    color: #94a3b8;
}

.sidebar-contact h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.sidebar-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.sidebar-contact p i {
    color: var(--accent-gold);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 9990;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.72)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero .subtitle {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 50px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0 25px;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 19px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-btn {
    display: flex;
    gap: 20px;
}

.hero-btn .btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.hero-btn .btn-warning {
    background: var(--gold-gradient);
    color: var(--primary-slate);
    border: none;
    box-shadow: 0 10px 25px -5px rgba(217, 119, 6, 0.4);
}

.hero-btn .btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.5);
    color: var(--primary-slate);
}

.hero-btn .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: transparent;
}

.hero-btn .btn-outline-light:hover {
    background: white;
    color: var(--primary-slate);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
    position: relative;
    background: white;
    z-index: 3;
}

.about-img-wrapper {
    position: relative;
    padding-right: 30px;
}

.about img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
    transform: translateY(-5px);
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-gold-light);
    border-radius: var(--radius-lg);
    bottom: -20px;
    right: 10px;
    z-index: -1;
    transition: var(--transition-smooth);
}

.about-img-wrapper:hover::before {
    bottom: -15px;
    right: 15px;
    border-color: var(--accent-gold);
}

.about h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-slate);
    margin: 15px 0 25px;
}

.about p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 35px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    border: 1px solid #f1f5f9;
    font-weight: 600;
    color: var(--primary-slate);
    transition: var(--transition-smooth);
}

.about-feature-item i {
    width: 32px;
    height: 32px;
    background: var(--accent-gold-light);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-fast);
}

.about-feature-item:hover {
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
}

.about-feature-item:hover i {
    background: var(--accent-gold);
    color: #ffffff;
}

/* ==========================================================================
   STATISTIC / COUNTER (FLOATING CARD DESIGN)
   ========================================================================== */
.counter {
    background: var(--primary-slate);
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.counter-card {
    background: var(--glass-card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.7);
    padding: 40px 30px;
    margin-top: -120px;
    position: relative;
    z-index: 10;
}

.counter-item {
    text-align: center;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #cbd5e1;
}

.counter h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter p {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
    background: var(--primary-light);
    position: relative;
    z-index: 3;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 35px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
    transition: var(--transition-smooth);
    border: 1px solid #e2e8f0;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-slate);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 6, 0.15);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gold-gradient);
    color: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.3);
    border-color: transparent;
}

.service-card:hover h4 {
    color: var(--accent-gold);
}

/* ==========================================================================
   PROJECTS
   ========================================================================== */
.projects {
    background: #ffffff;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

.project-overlay h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.project-overlay p {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

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

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover .project-overlay h4,
.project-card:hover .project-overlay p {
    transform: translateY(0);
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team {
    background: var(--primary-light);
}

.team-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid #f1f5f9;
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    z-index: 2;
    transition: var(--transition-smooth);
    opacity: 0;
}

.team-socials a {
    width: 38px;
    height: 38px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.team-socials a:hover {
    background: var(--primary-slate);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px 20px;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-slate);
    margin-bottom: 6px;
}

.team-info span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 119, 6, 0.12);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
}

.team-card:hover .team-socials {
    bottom: 20px;
    opacity: 1;
}

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.testimonial {
    background: #ffffff;
}

.testimonialSwiper {
    padding-bottom: 60px !important;
}

.testimonial-card {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 40px;
    color: rgba(217, 119, 6, 0.1);
    position: absolute;
    top: -25px;
    left: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold-light);
}

.testimonial-user-info {
    text-align: left;
}

.testimonial-user-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-slate);
    margin-bottom: 3px;
}

.testimonial-user-info span {
    font-size: 13.5px;
    color: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
    background: var(--primary-light);
}

.contact-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-list {
    margin-top: 35px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold-light);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-slate);
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper .form-control {
    background: var(--primary-light);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14.5px;
    color: var(--primary-slate);
    transition: var(--transition-fast);
}

.contact-form-wrapper .form-control:focus {
    background: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
    outline: none;
}

.contact-form-wrapper .btn-submit {
    background: var(--gold-gradient);
    color: var(--primary-slate);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.3);
}

.contact-form-wrapper .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(217, 119, 6, 0.4);
    color: var(--primary-slate);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--primary-slate);
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

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

.footer-about p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

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

.footer-links li a {
    font-size: 14.5px;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-subscribe p {
    font-size: 14.5px;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
}

.subscribe-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 14px;
    flex-grow: 1;
    outline: none;
}

.subscribe-form button {
    background: var(--accent-gold);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.subscribe-form button:hover {
    background: var(--accent-gold-hover);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 13.5px;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */
.backTop {
    transition: var(--transition-smooth) !important;
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.backTop.show {
    opacity: 1;
    visibility: visible;
}

.backTop:hover {
    transform: translateY(-5px);
    background: var(--accent-gold-hover) !important;
    box-shadow: 0 15px 25px -5px rgba(217, 119, 6, 0.5);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .navbar {
        background: var(--primary-slate);
        padding: 16px 0;
        top: 0; /* Overrides desktop offset since topbar is hidden */
    }
    
    .menu-btn {
        display: flex;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .topbar {
        display: none;
    }
    
    .hero {
        text-align: center;
        padding-top: 100px;
    }
    
    .hero p {
        margin: 0 auto 35px;
    }
    
    .hero-btn {
        justify-content: center;
    }
    
    .about-img-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .about-img-wrapper::before {
        right: 0;
        bottom: -15px;
    }
    
    .counter-card {
        margin-top: -60px;
    }
    
    .counter-item {
        margin-bottom: 30px;
    }
    
    .counter-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-btn {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn .btn {
        width: 100%;
        margin-right: 0;
    }
    
    .about h2 {
        font-size: 32px;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .contact-card, .contact-form-wrapper {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 34px;
    }
    
    .testimonial-card {
        padding: 35px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}