* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Loading Screen Styles */
@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    99% {
        opacity: 0;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes liquidSwirl {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.05);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 0 40px rgba(10, 135, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(10, 135, 255, 0.4);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeOut 0.8s ease-in-out forwards;
    animation-delay: 3s;
}

.loading-screen.hidden {
    animation: fadeOut 0.6s ease-out forwards;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.loading-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10, 135, 255, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.loading-container {
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.loading-logo-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    font-size: 70px;
    color: #FFD700;
    animation: liquidSwirl 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(10, 135, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.loading-logo-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: #FFD700;
    border-right-color: #0A87FF;
    border-radius: 50%;
    animation: liquidSwirl 4s linear infinite;
    opacity: 0.5;
}

.loading-logo-bg::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid transparent;
    border-bottom-color: #25D366;
    border-left-color: #FFD700;
    border-radius: 50%;
    animation: liquidSwirl 5s linear infinite reverse;
}

.loading-title {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #0A87FF 50%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: slideInDown 0.8s ease-out;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.loading-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    margin: 0;
    font-weight: 400;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.loading-progress {
    width: 280px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #0A87FF 50%, #25D366 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: shimmer 2s infinite;
}

.loading-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    margin: 0;
    animation: pulse 2s ease-in-out infinite;
}

.loading-dots {
    display: inline-block;
    width: 20px;
    text-align: left;
}

.loading-dots span {
    animation: pulse 1.4s infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

:root {
    --white: #FFFFFF;
    --black: #000000;
    --yellow: #FFD700;
    --blue: #0A87FF;
    --dark-bg: #0f0f0f;
    --light-gray: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

/* Floating Action Buttons */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 135, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(10, 135, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(10, 135, 255, 0);
    }
}

.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Button - Left Side */
.floating-btn-whatsapp {
    bottom: 100px;
    left: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

.floating-btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #0D7A6A 100%);
}

/* Instagram Button - Left Side (above WhatsApp) */
.floating-btn-instagram {
    bottom: 180px;
    left: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.floating-btn-instagram:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.5);
}

/* Facebook Button - Left Side (above Instagram) */
.floating-btn-facebook {
    bottom: 260px;
    left: 30px;
    background: linear-gradient(135deg, #1877f2 0%, #4267B2 100%);
    color: var(--white);
    animation: float 3s ease-in-out infinite;
}

.floating-btn-facebook:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
}

/* Scroll to Top Button - Right Side */
.floating-btn-top {
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-btn-top:hover {
    background: linear-gradient(135deg, #0870cc 0%, #e6c200 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .floating-btn-whatsapp {
        bottom: 80px;
        left: 15px;
    }

    .floating-btn-top {
        bottom: 80px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-btn-whatsapp {
        bottom: 70px;
        left: 10px;
    }

    .floating-btn-top {
        bottom: 70px;
        right: 10px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-wrapper {
    padding: 10px 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    animation: slideDown 0.6s ease-out 0.1s both;
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    animation: slideDown 0.6s ease-out;
}

.nav-menu li:nth-child(1) { animation-delay: 0.15s; }
.nav-menu li:nth-child(2) { animation-delay: 0.2s; }
.nav-menu li:nth-child(3) { animation-delay: 0.25s; }
.nav-menu li:nth-child(4) { animation-delay: 0.3s; }
.nav-menu li:nth-child(5) { animation-delay: 0.35s; }
.nav-menu li:nth-child(6) { animation-delay: 0.4s; }
.nav-menu li:nth-child(7) { animation-delay: 0.45s; }

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--blue);
    transform: translateY(-2px);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
    transition: width 0.3s ease;
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 0;
}

/* Active Link Styling */
.nav-menu a.active {
    color: var(--blue);
    font-weight: 700;
}

.nav-menu a.active::before {
    width: 100%;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.nav-menu a.active::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    animation: slideDown 0.6s ease-out 0.5s both;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.85) 0%, rgba(15, 30, 60, 0.88) 50%, rgba(20, 40, 80, 0.85) 100%), url('pics/background_hero.png') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    opacity: 0.08;
    z-index: 0;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%, 30% 0%);
}

/* Animated Blobs */
@keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 20px) rotate(120deg); }
    66% { transform: translate(25px, -25px) rotate(240deg); }
}

@keyframes float-blob-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, 40px) rotate(120deg); }
    66% { transform: translate(-30px, -20px) rotate(240deg); }
}

.hero-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.15;
    z-index: 0;
    filter: blur(40px);
}

.hero-blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    top: 10%;
    right: 10%;
    animation: float-blob-1 15s ease-in-out infinite;
}

.hero-blob-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    bottom: 15%;
    left: 5%;
    animation: float-blob-2 18s ease-in-out infinite;
}

.hero-blob-3 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff6b9d, var(--blue));
    top: 50%;
    right: 5%;
    animation: float-blob-3 20s ease-in-out infinite;
}

/* Floating Elements */
@keyframes float-element {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.3; }
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    animation: float-element 6s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    border-color: var(--blue);
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    border-color: var(--yellow);
    animation-delay: 1s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 5%;
    border-color: #ff6b9d;
    animation-delay: 2s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 50px 30px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.15), rgba(255, 215, 0, 0.12));
    border: 2px solid rgba(10, 135, 255, 0.4);
    border-radius: 50px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    animation: slideInDown 0.8s ease-out;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(10, 135, 255, 0.1);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.25;
    letter-spacing: -1.5px;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    animation: slideInUp 0.9s ease-out 0.2s both;
}

.title-word {
    display: block;
    animation: slideInUp 0.8s ease-out;
}

.title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--blue);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.4s both;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.highlight-text {
    color: var(--yellow);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding: 0 4px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(10, 135, 255, 0.1));
    border-radius: 6px;
    transition: all 0.3s ease;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow), var(--blue));
    border-radius: 2px;
}

.amp-symbol {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-style: italic;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-spacer {
    height: 40px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.btn-glow,
.btn-outline-glow {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-glow span,
.btn-glow i,
.btn-outline-glow span,
.btn-outline-glow i {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background-color: #0870cc;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 135, 255, 0.4);
}

.btn-secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.btn-outline-glow {
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--blue);
}

.btn-outline-glow:hover {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(10, 135, 255, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 70px;
    padding-top: 50px;
    border-top: 2px solid rgba(10, 135, 255, 0.25);
    animation: fadeIn 1s ease-out 0.7s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(10, 135, 255, 0.3), rgba(255, 255, 255, 0.1));
}


/* Buttons */
.btn {
    padding: 16px 42px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(10, 135, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0870cc;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 135, 255, 0.5);
}

.btn-secondary {
    background-color: var(--yellow);
    color: var(--black);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #e6c200;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background-color: var(--blue);
    color: var(--white);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.why-choose h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 249, 255, 0.75) 100%), url('pics/about_back.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
}

.about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@keyframes highlight-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--blue);
    border-radius: 16px;
    color: var(--black);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: highlight-float 3s ease-in-out infinite;
}

.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.highlight:hover {
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: var(--yellow);
    box-shadow: 0 15px 40px rgba(10, 135, 255, 0.2);
    transform: translateY(-15px);
}

.highlight:hover::before {
    left: 100%;
}

.highlight-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--blue), var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.highlight-text {
    font-size: 15px;
    margin-top: 0;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(10, 135, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(10, 135, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Floating shapes for services section */
.services::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.1), rgba(255, 215, 0, 0.08));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -10%;
    right: -5%;
    filter: blur(60px);
    animation: float-services-1 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float-services-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-30px, 50px) rotate(120deg) scale(1.1); }
    66% { transform: translate(20px, -30px) rotate(240deg) scale(0.9); }
}

.services > .container {
    position: relative;
    z-index: 1;
}

.services h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(10, 135, 255, 0.3);
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.12);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

/* Why Epoxy Section */
.why-epoxy {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.why-epoxy h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 28px;
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 14px;
    opacity: 0.8;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.comparison-table h3 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--white);
}

table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table tr:last-child td {
    border-bottom: none;
}

.yes {
    color: var(--yellow);
    font-weight: 600;
}

.no {
    color: #ff6b6b;
    font-weight: 600;
}

/* Safety Section */
.safety {
    padding: 80px 0;
    background-color: var(--white);
}

.safety h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: var(--black);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.safety-card {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 135, 255, 0.3);
}

.safety-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.safety-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.safety-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--black);
}

.gallery-note {
    text-align: center;
    font-size: 16px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 40px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.08), rgba(255, 215, 0, 0.08));
    border-radius: 8px;
    border-left: 4px solid var(--blue);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--blue);
    background-color: transparent;
    color: var(--blue);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 40px;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(10, 135, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Animated Background Shapes */
@keyframes float-shape-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -40px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float-shape-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-50px, 20px) rotate(120deg); }
    66% { transform: translate(40px, -30px) rotate(240deg); }
}

@keyframes float-shape-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(40px, 50px) rotate(120deg); }
    66% { transform: translate(-30px, -40px) rotate(240deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

.contact::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.15), rgba(255, 215, 0, 0.1));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: 10%;
    left: 5%;
    filter: blur(40px);
    animation: float-shape-1 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-shape-1 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(10, 135, 255, 0.08));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    right: 10%;
    filter: blur(50px);
    animation: float-shape-2 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(10, 135, 255, 0.2);
    border-radius: 50%;
    top: 30%;
    right: 5%;
    animation: float-shape-3 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.contact-shape-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    left: 15%;
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.contact > .container {
    position: relative;
    z-index: 1;
}

.contact h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    font-weight: 500;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 16px 14px 45px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-icon {
    position: absolute;
    left: 14px;
    top: 42px;
    font-size: 16px;
    color: var(--yellow);
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon,
.form-group select:focus ~ .form-icon {
    opacity: 1;
    transform: scale(1.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit span,
.btn-submit i {
    position: relative;
    z-index: 1;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    font-style: italic;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 28px;
    color: var(--yellow);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    opacity: 0.8;
}

.info-item a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--white);
}

/* Social Media Icons */
.info-item.social-media {
    flex-direction: column;
    gap: 15px;
}

.info-item.social-media h4 {
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-icon:hover {
    transform: scale(1.15) rotate(360deg);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1);
}

.social-icon:hover i {
    transform: scale(1.1);
}

.social-icon.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    box-shadow: 0 0 30px rgba(220, 39, 67, 0.6), 0 0 60px rgba(188, 24, 136, 0.4);
}

.social-icon.facebook::before {
    background: #1877f2;
}

.social-icon.facebook:hover {
    box-shadow: 0 0 30px rgba(24, 119, 242, 0.6), 0 0 60px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter::before {
    background: #1da1f2;
}

.social-icon.twitter:hover {
    box-shadow: 0 0 30px rgba(29, 161, 242, 0.6), 0 0 60px rgba(29, 161, 242, 0.4);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

/* Pulse animation on hover */
@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.social-icon:hover {
    animation: iconPulse 1.5s ease-in-out infinite;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--black);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(10, 135, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid rgba(10, 135, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(10, 135, 255, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 8px;
    font-size: 18px;
}

.testimonial-stars i {
    color: var(--yellow);
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 15px;
    border-top: 1px solid rgba(10, 135, 255, 0.1);
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.testimonial-author p {
    font-size: 13px;
    color: var(--blue);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid var(--yellow);
}

.footer p {
    font-size: 14px;
}

/* Responsive Design */
@keyframes slideInMenu {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.98));
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(10, 135, 255, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(10, 135, 255, 0.08);
        animation: slideInMenu 0.4s ease-out;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.35s; }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        transition: all 0.3s ease;
        color: var(--black);
    }

    .nav-menu a:hover {
        background-color: rgba(10, 135, 255, 0.08);
        color: var(--blue);
        padding-left: 30px;
    }

    .hero {
        margin-top: 60px;
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-spacer {
        height: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .btn {
        width: 100%;
        padding: 14px 30px;
        font-size: 15px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 50px;
        padding-top: 40px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        height: 35px;
    }

    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3 {
        opacity: 0.08;
    }

    .floating-element {
        opacity: 0.15;
    }

    .about-content,
    .benefits-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-subtitle {
        font-size: 16px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid,
    .safety-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    /* Mobile Table Styling */
    .comparison-table {
        padding: 20px;
        overflow-x: auto;
    }

    .comparison-table h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    table {
        font-size: 13px;
        min-width: 100%;
    }

    table th {
        padding: 12px 8px;
        font-size: 12px;
        font-weight: 700;
    }

    table td {
        padding: 12px 8px;
        font-size: 12px;
    }

    table th:first-child,
    table td:first-child {
        min-width: 100px;
    }

    table th:nth-child(2),
    table th:nth-child(3),
    table td:nth-child(2),
    table td:nth-child(3) {
        min-width: 80px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 60px;
        min-height: auto;
        padding: 50px 0;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 11px;
        margin-bottom: 18px;
    }

    .hero-spacer {
        height: 25px;
    }

    .hero-buttons {
        gap: 12px;
        margin-bottom: 35px;
    }

    .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 20px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stat-divider {
        height: 30px;
        width: 1px;
    }

    .services h2,
    .why-choose h2,
    .why-epoxy h2,
    .safety h2,
    .gallery h2,
    .contact h2,
    .about h2,
    .testimonials h2 {
        font-size: 36px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    /* Extra Small Mobile Table */
    table {
        font-size: 11px;
    }

    table th {
        padding: 10px 6px;
        font-size: 10px;
    }

    table td {
        padding: 10px 6px;
        font-size: 11px;
    }

    table th:first-child,
    table td:first-child {
        min-width: 80px;
    }

    table th:nth-child(2),
    table th:nth-child(3),
    table td:nth-child(2),
    table td:nth-child(3) {
        min-width: 70px;
    }
}
