/* BUILDRYT - Professional Classic Design */

/* ===== CSS Variables ===== */
:root {
    --primary-yellow: #d4a017;
    --primary-dark: #1a1a1a;
    --accent-gold: #c9981a;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #9a9a9a;
    --text-heading: #ffffff;
    --text-body: #d0d0d0;
    --bg-dark: #0a0a0c;
    --bg-section: #0e0e12;
    --card-bg: #16161c;
    --border-color: #222230;
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 5px 25px rgba(0, 0, 0, 0.5);
    --nav-bg: #0e0e12;
    --nav-bg-scrolled: rgba(14, 14, 18, 0.97);
    --footer-bg: #0c0c10;
    --input-bg: #0a0a0c;
    --hero-overlay: linear-gradient(135deg, rgba(10, 10, 12, 0.92) 0%, rgba(14, 14, 18, 0.65) 50%, rgba(20, 20, 28, 0.35) 100%);
}

/* ===== General Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 160, 23, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(30, 30, 50, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(212, 160, 23, 0.02) 0%, transparent 40%);
    color: var(--text-body);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #050506 0%, #0a0a0c 50%, #08080a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Navbar ===== */
.glass-nav {
    background: linear-gradient(180deg, rgba(14, 14, 18, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(34, 34, 48, 0.6);
}

.glass-nav.scrolled {
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.98) 0%, rgba(14, 14, 18, 0.99) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white) !important;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.theme-toggle-btn {
    color: var(--text-light) !important;
    font-size: 1rem;
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow);
    background: rgba(212, 160, 23, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow) !important;
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0c 0%, #0e0e14 100%);
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25);
    animation: heroZoomIn 15s ease-out forwards;
    transform: scale(1);
}

@keyframes heroZoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 12, 0.92) 0%, rgba(14, 14, 20, 0.65) 50%, rgba(20, 20, 30, 0.35) 100%);
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 1;
    padding: 130px 0 60px;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-row {
    min-height: 70vh;
    align-items: center;
}

/* Hero Left */
.hero-left {
    padding-right: 40px;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: var(--primary-yellow);
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge-divider {
    opacity: 0.4;
    margin: 0 4px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.12;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-title-line {
    width: 70px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 20px 0 22px;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary-hero {
    background: linear-gradient(145deg, rgba(212, 160, 23, 0.95) 0%, rgba(201, 152, 26, 1) 100%);
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.25);
}

.btn-primary-hero:hover {
    background: linear-gradient(145deg, rgba(201, 152, 26, 1) 0%, rgba(212, 160, 23, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.35);
    color: var(--primary-dark);
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-heading);
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Hero Experience Badge */
.hero-experience {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-exp-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 22px;
}

.hero-exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.hero-exp-text {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.4;
}

/* Hero Right - Photo */
.hero-right {
    animation: heroPhotoIn 1s ease-out 0.3s both;
}

@keyframes heroPhotoIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-accent {
    position: absolute;
    top: 0;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    z-index: 1;
    opacity: 0.4;
}

.hero-image-frame {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: var(--primary-yellow);
    border-radius: 8px;
    z-index: 0;
    opacity: 0.15;
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(14, 14, 20, 0.95) 0%, rgba(10, 10, 14, 0.98) 100%);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(34, 34, 48, 0.5);
    padding: 28px 0;
}

.hero-stats-item {
    text-align: center;
    padding: 8px 0;
    border-right: 1px solid var(--border-color);
}

.hero-stats-item:last-child {
    border-right: none;
}

.hero-stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
    line-height: 1.1;
}

.hero-stats-label {
    color: var(--primary-yellow);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    opacity: 0.8;
}

/* ===== Buttons ===== */
.btn-glass {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.08);
}

.btn-warning {
    background: linear-gradient(145deg, rgba(212, 160, 23, 0.95) 0%, rgba(201, 152, 26, 1) 100%);
    border: none;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-warning:hover {
    background: linear-gradient(145deg, rgba(201, 152, 26, 1) 0%, rgba(212, 160, 23, 0.95) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
}

/* ===== Section Styles ===== */
.about-section {
    background: linear-gradient(180deg, #0e0e12 0%, #101016 50%, #0e0e12 100%);
    position: relative;
    border-top: 1px solid rgba(34, 34, 48, 0.4);
    border-bottom: 1px solid rgba(34, 34, 48, 0.4);
}

.about-section::before {
    display: none;
}

.services-section {
    background: linear-gradient(180deg, #0a0a0c 0%, #0d0d12 50%, #0a0a0c 100%);
    position: relative;
    border-bottom: 1px solid rgba(34, 34, 48, 0.4);
}

.services-section::before {
    display: none;
}

.why-section {
    background: linear-gradient(180deg, #101016 0%, #0e0e14 50%, #101016 100%);
    position: relative;
    border-bottom: 1px solid rgba(34, 34, 48, 0.4);
}

.why-section::before {
    display: none;
}

/* ===== Section Titles ===== */
.section-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* ===== Service Titles ===== */
.service-title {
    font-weight: 700;
    color: var(--text-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Text Visibility ===== */
.lead {
    color: var(--text-body);
    font-weight: 400;
    font-size: 1rem;
}

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

h5, h6 {
    color: var(--text-heading);
    font-weight: 600;
}

.text-light {
    color: var(--text-muted) !important;
}

/* ===== Dark Section Text ===== */
.page-hero,
.hero-section,
.services-section,
.contact-section,
.stats-section,
.cta-section,
.glass-footer {
    color: #ffffff;
}

.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4,
.page-hero h5,
.page-hero h6,
.page-hero p,
.page-hero span,
.page-hero li,
.page-hero .lead {
    color: #ffffff;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p,
.hero-section span,
.hero-section .lead {
    color: #ffffff;
}

.services-section h1,
.services-section h2,
.services-section h3,
.services-section h4,
.services-section h5,
.services-section h6,
.services-section p,
.services-section span,
.services-section li,
.services-section .lead {
    color: #ffffff;
}

.contact-section h1,
.contact-section h2,
.contact-section h3,
.contact-section h4,
.contact-section h5,
.contact-section h6,
.contact-section p,
.contact-section span,
.contact-section li,
.contact-section .lead {
    color: #ffffff;
}

.stats-section h1,
.stats-section h2,
.stats-section h3,
.stats-section h4,
.stats-section h5,
.stats-section h6,
.stats-section p,
.stats-section span,
.stats-section li,
.stats-section .lead {
    color: #ffffff;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6,
.cta-section p,
.cta-section span,
.cta-section .lead {
    color: #ffffff;
}

.glass-footer h1,
.glass-footer h2,
.glass-footer h3,
.glass-footer h4,
.glass-footer h5,
.glass-footer h6,
.glass-footer p,
.glass-footer span,
.glass-footer li,
.glass-footer .lead,
.glass-footer .text-light {
    color: #ffffff !important;
}

/* Bootstrap form overrides */
.form-control,
.form-select {
    background-color: rgba(10, 10, 14, 0.6) !important;
    border-color: rgba(34, 34, 48, 0.5) !important;
    color: var(--text-heading) !important;
    backdrop-filter: blur(4px);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(212, 160, 23, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(212, 160, 23, 0.1) !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-control option,
.form-select option {
    background-color: var(--input-bg);
    color: var(--text-heading);
}

.btn-outline-warning {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.btn-outline-warning:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

/* ===== Stat Boxes ===== */
.glass-stat {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.8) 0%, rgba(18, 18, 24, 0.9) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 15px;
    backdrop-filter: blur(4px);
}

.glass-stat:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.12), 0 0 40px rgba(212, 160, 23, 0.05);
}

.glass-stat h3 {
    font-size: 1.6rem;
    margin-bottom: 3px;
}

.glass-stat p {
    font-size: 0.75rem;
    margin: 0;
}

/* ===== Service Cards ===== */
.glass-service-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.7) 0%, rgba(16, 16, 22, 0.85) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.glass-service-card::before {
    display: none;
}

.glass-service-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 50px rgba(212, 160, 23, 0.08);
}

.service-img-wrapper {
    height: 180px;
    overflow: hidden;
    border-radius: 6px;
}

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

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

/* ===== Icons ===== */
.glass-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(14, 14, 20, 0.9) 0%, rgba(10, 10, 14, 0.95) 100%);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.glass-icon:hover {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    border-color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.glass-icon-lg {
    width: 65px;
    height: 65px;
    background: linear-gradient(145deg, rgba(14, 14, 20, 0.9) 0%, rgba(10, 10, 14, 0.95) 100%);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.glass-icon-lg:hover {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 160, 23, 0.25);
}

.glass-icon-sm {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--nav-bg);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-yellow);
}

/* ===== Feature Boxes ===== */
.glass-feature-box {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.7) 0%, rgba(16, 16, 22, 0.85) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    transition: all 0.4s ease;
    height: 100%;
    padding: 25px 15px;
    backdrop-filter: blur(4px);
}

.glass-feature-box:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 160, 23, 0.08);
}

.glass-feature-box h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-heading);
}

.glass-feature-box p {
    font-size: 0.8rem;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    z-index: 0;
    overflow: hidden;
    border-top: 1px solid rgba(34, 34, 48, 0.4);
    border-bottom: 1px solid rgba(34, 34, 48, 0.4);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoomIn 15s ease-out forwards;
    transform: scale(1);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 14, 0.88) 0%, rgba(14, 14, 20, 0.92) 50%, rgba(10, 10, 14, 0.95) 100%);
    z-index: -1;
}

.glass-card-dark {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.8) 0%, rgba(16, 16, 22, 0.9) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.glass-card-light {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.6) 0%, rgba(16, 16, 22, 0.75) 100%);
    border: 1px solid rgba(34, 34, 48, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    overflow: hidden;
}

.glass-card-dark h2 {
    color: var(--text-heading);
}

/* ===== Contact Section ===== */
.contact-section {
    background: linear-gradient(180deg, #0a0a0c 0%, #0d0d12 50%, #0a0a0c 100%);
    position: relative;
    border-top: 1px solid rgba(34, 34, 48, 0.4);
}

.contact-section::before {
    display: none;
}

.glass-contact-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.8) 0%, rgba(16, 16, 22, 0.9) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    padding: 25px;
    backdrop-filter: blur(4px);
}

.glass-contact-card h4 {
    color: var(--text-heading);
}

/* ===== Form Inputs ===== */
.glass-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 10, 14, 0.6);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 6px;
    color: var(--text-heading);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(4px);
}

.glass-input::placeholder {
    color: var(--text-muted);
}

.glass-input:focus {
    border-color: rgba(212, 160, 23, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1), 0 0 20px rgba(212, 160, 23, 0.05);
}

.glass-input option {
    background: var(--input-bg);
    color: var(--text-heading);
}

textarea.glass-input {
    resize: vertical;
    min-height: 100px;
}

/* ===== Social Buttons ===== */
.glass-social-btn {
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 14, 0.6);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-heading);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.glass-social-btn:hover {
    background: linear-gradient(145deg, rgba(212, 160, 23, 0.9) 0%, rgba(201, 152, 26, 0.95) 100%);
    border-color: var(--primary-yellow);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.3);
}

/* ===== Footer ===== */
.glass-footer {
    background: linear-gradient(180deg, #0c0c10 0%, #08080c 50%, #0a0a0e 100%);
    border-top: 1px solid rgba(34, 34, 48, 0.4);
    padding: 40px 0 25px;
}

.glass-footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.glass-footer h6 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-white);
}

.glass-footer p, .glass-footer li {
    font-size: 0.8rem;
}

/* ===== Utility Classes ===== */
.text-warning {
    color: var(--primary-yellow) !important;
}

.bg-warning {
    background: var(--primary-yellow) !important;
}

.text-dark {
    color: var(--text-heading) !important;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ===== Selection ===== */
::selection {
    background: var(--primary-yellow);
    color: var(--primary-dark);
}

/* ===== Responsive Design - Tablet ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .glass-icon-lg {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-container {
        padding: 120px 0 60px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title-line {
        margin: 15px auto 20px;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-experience {
        justify-content: center;
    }
    
    .hero-stats-item {
        border-right: none;
    }
}

/* ===== Responsive Design - Mobile ===== */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .hero-container {
        padding: 110px 0 50px;
    }
    
    .hero-row {
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }
    
    .hero-title-line {
        margin: 12px auto 18px;
    }
    
    .hero-badge-top {
        font-size: 0.65rem;
        padding: 8px 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.82rem;
    }
    
    .hero-experience {
        justify-content: center;
    }
    
    .hero-exp-number {
        font-size: 1.8rem;
    }
    
    .hero-stats-bar {
        padding: 20px 0;
    }
    
    .hero-stats-number {
        font-size: 1.5rem;
    }
    
    .hero-stats-label {
        font-size: 0.6rem;
    }
    
    .hero-stats-item {
        margin-bottom: 10px;
    }
    
    .service-img-wrapper {
        height: 150px;
    }
    
    .glass-feature-box {
        padding: 20px 12px;
    }
    
    .glass-icon-lg {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .glass-contact-card {
        padding: 20px;
    }
    
    .glass-footer {
        padding: 30px 0 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        width: 50px;
    }
    
    .btn-glass, .btn-warning {
        padding: 10px 22px;
        font-size: 0.8rem;
    }
}

/* ===== Responsive Design - Small Mobile ===== */
@media (max-width: 576px) {
    .hero-container {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 5px;
    }
    
    .hero-title-line {
        width: 50px;
        margin: 10px auto 15px;
    }
    
    .hero-badge-top {
        font-size: 0.6rem;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        padding: 12px 20px;
        font-size: 0.78rem;
    }
    
    .hero-exp-badge {
        padding: 12px 16px;
    }
    
    .hero-exp-number {
        font-size: 1.5rem;
    }
    
    .hero-exp-text {
        font-size: 0.65rem;
    }
    
    .hero-stats-bar {
        padding: 15px 0;
    }
    
    .hero-stats-number {
        font-size: 1.3rem;
    }
    
    .hero-stats-label {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
    
    .lead {
        font-size: 0.9rem;
    }
    
    .glass-service-card .row {
        flex-direction: column;
    }
    
    .service-img-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .glass-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .glass-feature-box h5 {
        font-size: 0.85rem;
    }
    
    .glass-feature-box p {
        font-size: 0.75rem;
    }
    
    .glass-contact-card h4 {
        font-size: 1.1rem;
    }
    
    .glass-footer h5 {
        font-size: 1.1rem;
    }
    
    .glass-footer h6 {
        font-size: 0.85rem;
    }
}

/* ===== Extra Small Devices ===== */
@media (max-width: 400px) {
    .hero-container {
        padding: 90px 0 30px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-badge-top {
        font-size: 0.55rem;
        padding: 5px 10px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-primary-hero, .btn-secondary-hero {
        font-size: 0.72rem;
        padding: 11px 16px;
    }
    
    .hero-exp-badge {
        padding: 10px 14px;
    }
    
    .hero-exp-number {
        font-size: 1.3rem;
    }
    
    .hero-stats-number {
        font-size: 1.1rem;
    }
    
    .hero-stats-label {
        font-size: 0.5rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
    position: relative;
    z-index: 0;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a0c 0%, #0e0e14 100%);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    animation: heroZoomIn 15s ease-out forwards;
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 14, 0.5) 0%, rgba(14, 14, 20, 0.7) 100%);
    z-index: -1;
}

.page-hero-content {
    text-align: center;
    padding-top: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* ===== About Page Styles ===== */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
}

.exp-number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.exp-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-check {
    width: 30px;
    height: 30px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.8rem;
}

/* Mission Cards */
.mission-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.7) 0%, rgba(16, 16, 22, 0.85) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.mission-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, rgba(212, 160, 23, 0.9) 0%, rgba(201, 152, 26, 1) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.25);
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.mission-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Value Cards */
.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--nav-bg);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.value-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.value-card p {
    font-size: 0.8rem;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-yellow);
    display: block;
    line-height: 1.1;
}

.stat-label {
    color: var(--primary-yellow);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    opacity: 0.8;
}

/* ===== Services Page Styles ===== */
.service-detail-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: var(--nav-bg);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.service-detail-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    color: var(--primary-yellow);
}

/* Process Cards */
.process-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.7) 0%, rgba(16, 16, 22, 0.85) 100%);
    border: 1px solid rgba(34, 34, 48, 0.5);
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.process-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-yellow);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.process-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* ===== Projects Page Styles ===== */
.sticky-filter {
    position: sticky;
    top: 56px;
    z-index: 100;
    border-bottom: 1px solid rgba(34, 34, 48, 0.4);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-body);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(34, 34, 48, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 160, 23, 0.3);
}

.project-image {
    position: relative;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 14, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-category {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 10px;
}

.project-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.project-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.project-link {
    color: var(--primary-yellow);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-link:hover {
    color: var(--accent-gold);
}

/* ===== Contact Page Styles ===== */
.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: var(--nav-bg);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.contact-info-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.contact-info-card p {
    font-size: 0.85rem;
    margin: 0;
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.contact-details-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

.contact-details-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--nav-bg);
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

.contact-detail-item h6 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-heading);
}

.contact-detail-item p {
    font-size: 0.85rem;
    margin: 0;
}

.map-section {
    border-top: 1px solid var(--border-color);
}

/* ===== Responsive - Inner Pages ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-hero {
        height: 35vh;
        min-height: 250px;
    }
    
    .experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .project-image img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-form-card,
    .contact-details-card {
        padding: 20px;
    }
    
    .filter-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ===== Print Styles ===== */
@media print {
    .glass-nav, .preloader, .hero-scroll-indicator, .whatsapp-float {
        display: none;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .glass-card, .glass-service-card, .glass-feature-box, .glass-contact-card {
        background: #f5f5f5;
        border: 1px solid #ddd;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
    text-decoration: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a1a;
}

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

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}