/* ============================================
   36 Bucks Advertisers - Modern Website
   Customized Branding, Printing & Corporate Giveaways
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1a2744;
    --primary-light: #2a3f6e;
    --primary-dark: #0f1a30;
    --accent: #c8a97e;
    --accent-light: #dfc5a4;
    --accent-dark: #b08d5e;
    --gold: #d4a853;
    --white: #ffffff;
    --off-white: #f8f6f3;
    --light-gray: #f0ede8;
    --gray: #8a8a8a;
    --dark-gray: #333333;
    --text: #2d2d2d;
    --text-light: #666666;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--off-white);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-dark);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--accent);
}

.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

/* Announcement Bar */
.announcement-bar {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.announcement-bar a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement-bar a:hover {
    color: var(--white);
}

/* Header / Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-img {
    height: 8vh;   /* adjust as needed */
    width: auto;
    display: block;
}
.logo-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.3;
}

.logo-text small {
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 0.6rem;
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 6px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(26, 39, 68, 0.05);
}

.nav-cta {
    font-size: 0.85rem !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #1e3355 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(200, 169, 126, 0.15);
    border: 1px solid rgba(200, 169, 126, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-light);
    letter-spacing: 1px;
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease both;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes accentPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.15s both;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.45s both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.7s ease 0.6s both;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

/* Hero Animated Showcase */
.hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.9s ease 0.3s both;
}

.hero-anim {
    position: relative;
    width: 480px;
    height: 480px;
}

/* Orbiting rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 126, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-ring-1 {
    width: 280px;
    height: 280px;
    border-color: rgba(200, 169, 126, 0.2);
    animation: ringRotate 30s linear infinite;
}

.hero-ring-2 {
    width: 380px;
    height: 380px;
    border-style: dashed;
    border-color: rgba(200, 169, 126, 0.1);
    animation: ringRotate 45s linear infinite reverse;
}

.hero-ring-3 {
    width: 470px;
    height: 470px;
    border-color: rgba(255, 255, 255, 0.04);
    animation: ringRotate 60s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Center brand element */
.hero-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.15) 0%, rgba(200, 169, 126, 0.05) 100%);
    border: 2px solid rgba(200, 169, 126, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(10px);
    animation: centerPulse 4s ease-in-out infinite;
}

.hero-center-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}

.hero-center-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(200, 169, 126, 0.8);
    letter-spacing: 4px;
    margin-top: 2px;
}

@keyframes centerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.15), 0 0 40px rgba(200, 169, 126, 0.08); }
    50% { box-shadow: 0 0 0 15px rgba(200, 169, 126, 0), 0 0 60px rgba(200, 169, 126, 0.15); }
}

/* Floating service icons */
.hero-float {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.hero-float svg {
    width: 36px;
    height: 36px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(200, 169, 126, 0.1);
    border: 1px solid rgba(200, 169, 126, 0.2);
    color: var(--accent-light);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.hero-float:hover svg {
    background: rgba(200, 169, 126, 0.25);
    border-color: rgba(200, 169, 126, 0.5);
    transform: scale(1.1);
}

.hero-float span {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-float:hover span {
    color: var(--accent-light);
}

/* Icon positions around the circle */
.hero-float-1 {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatIcon 5s ease-in-out infinite;
}

.hero-float-2 {
    top: 18%;
    right: 2%;
    animation: floatIcon 5s ease-in-out 0.8s infinite;
}

.hero-float-3 {
    bottom: 18%;
    right: 2%;
    animation: floatIcon 5s ease-in-out 1.6s infinite;
}

.hero-float-4 {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatIcon 5s ease-in-out 2.4s infinite;
}

.hero-float-5 {
    bottom: 18%;
    left: 2%;
    animation: floatIcon 5s ease-in-out 3.2s infinite;
}

.hero-float-6 {
    top: 18%;
    left: 2%;
    animation: floatIcon 5s ease-in-out 4s infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-float-1, .hero-float-4 {
    animation-name: floatIconX;
}

@keyframes floatIconX {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Decorative dots */
.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    z-index: 1;
}

.hero-dot-1 {
    width: 6px; height: 6px;
    top: 12%; left: 28%;
    opacity: 0.4;
    animation: dotFloat 4s ease-in-out infinite;
}

.hero-dot-2 {
    width: 4px; height: 4px;
    top: 30%; right: 12%;
    opacity: 0.3;
    animation: dotFloat 5s ease-in-out 1s infinite;
}

.hero-dot-3 {
    width: 8px; height: 8px;
    bottom: 25%; right: 20%;
    opacity: 0.2;
    animation: dotFloat 6s ease-in-out 0.5s infinite;
}

.hero-dot-4 {
    width: 5px; height: 5px;
    bottom: 12%; left: 25%;
    opacity: 0.35;
    animation: dotFloat 4.5s ease-in-out 2s infinite;
}

.hero-dot-5 {
    width: 3px; height: 3px;
    top: 45%; left: 8%;
    opacity: 0.25;
    animation: dotFloat 5.5s ease-in-out 1.5s infinite;
}

.hero-dot-6 {
    width: 5px; height: 5px;
    top: 8%; right: 30%;
    opacity: 0.3;
    animation: dotFloat 4s ease-in-out 3s infinite;
}

@keyframes dotFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-8px) scale(1.4); opacity: 0.6; }
}

/* Gold accent lines */
.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.3), transparent);
    z-index: 1;
}

.hero-line-1 {
    width: 80px;
    height: 1px;
    top: 35%;
    left: 10%;
    transform: rotate(-30deg);
    animation: lineGlow 3s ease-in-out infinite;
}

.hero-line-2 {
    width: 60px;
    height: 1px;
    bottom: 30%;
    right: 10%;
    transform: rotate(25deg);
    animation: lineGlow 3s ease-in-out 1s infinite;
}

.hero-line-3 {
    width: 50px;
    height: 1px;
    top: 55%;
    right: 5%;
    transform: rotate(-15deg);
    animation: lineGlow 3s ease-in-out 2s infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.2; width: 50px; }
    50% { opacity: 0.6; width: 80px; }
}

/* Trusted By */
.trusted-by {
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: var(--white);
}

.trusted-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logos span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.5;
    transition: var(--transition);
    white-space: nowrap;
}

.trusted-logos span:hover {
    opacity: 1;
    color: var(--primary);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--accent-dark);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    letter-spacing: 0.5px;
}

.category-card:hover .category-link {
    color: var(--primary);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 80px;
    height: 80px;
    color: var(--gray);
    opacity: 0.4;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Why Choose Us */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-tag {
    padding-left: 0;
}

.why-us-content .section-tag::before {
    display: none;
}

.why-us-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.15;
}

.why-us-content > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 126, 0.12);
    border-radius: var(--radius-sm);
    color: var(--accent-dark);
    padding: 10px;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.why-us-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    padding: 50px 40px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 400px;
}

.visual-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(200, 169, 126, 0.15);
    border-radius: 50%;
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.visual-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 169, 126, 0.08) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo .logo-number,
.footer-brand .logo .logo-text {
    color: var(--white);
}

.footer-brand .logo .logo-text small {
    color: rgba(255,255,255,0.5);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.footer-contact li svg {
    min-width: 18px;
    color: var(--accent);
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.5);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   Page-specific Styles
   ============================================ */

/* Page Hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 540px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
    color: var(--accent-light);
}

/* About Page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-visual {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
}

.about-visual-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-dark);
    margin-bottom: 24px;
}

.about-visual h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.about-visual p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-dark);
    margin: 0 auto 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Page */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.service-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    min-width: 8px;
}

.service-visual {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-icon {
    width: 100px;
    height: 100px;
    color: var(--accent-dark);
    opacity: 0.4;
}

/* Products Page */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.products-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Portfolio Page */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-card {
    padding: 30px 24px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.client-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.client-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    padding: 36px 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-dark);
    margin-bottom: 16px;
}

.industry-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 126, 0.12);
    border-radius: var(--radius-sm);
    color: var(--accent-dark);
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--accent-dark);
}

.contact-form-wrap {
    background: var(--off-white);
    padding: 48px;
    border-radius: var(--radius-lg);
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-wrap > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Map Container */
.map-section {
    background: var(--off-white);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Product Gallery Modal
   ============================================ */

/* Image count badge on product cards */
.product-image-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50px;
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(4px);
    transition: var(--transition);
}

.product-card:hover .product-image-count {
    opacity: 1;
    transform: translateY(0);
}

.product-card[data-images] {
    cursor: pointer;
}

/* Gallery Overlay */
.gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: rgba(10, 15, 28, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.gallery-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Gallery Modal */
.gallery-modal {
    width: 94vw;
    max-width: 1100px;
    height: 92vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-overlay.active .gallery-modal {
    transform: scale(1) translateY(0);
}

/* Gallery Header */
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    flex-shrink: 0;
}

.gallery-title h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.3;
}

.gallery-counter {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.gallery-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.gallery-inquire {
    background: var(--accent) !important;
    color: var(--primary-dark) !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.gallery-inquire:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(200, 169, 126, 0.4);
}

.gallery-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

/* Gallery Body */
.gallery-body {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 0;
    padding: 0 8px;
}

/* Navigation Arrows */
.gallery-nav {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-nav:active {
    transform: scale(0.95);
}

/* Main Image */
.gallery-main-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.3);
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-main-image img.gallery-img-fade {
    opacity: 0;
    transform: scale(0.96);
}

/* Thumbnails */
.gallery-thumbnails {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px 20px;
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.45;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.gallery-thumb:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(200, 169, 126, 0.35);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-anim {
        width: 380px;
        height: 380px;
    }

    .hero-ring-1 { width: 220px; height: 220px; }
    .hero-ring-2 { width: 300px; height: 300px; }
    .hero-ring-3 { width: 370px; height: 370px; }

    .hero-center {
        width: 110px;
        height: 110px;
    }

    .hero-center-num {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .category-grid,
    .services-grid,
    .product-grid,
    .products-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-us-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-modal {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }

    .gallery-header {
        padding: 12px 16px;
    }

    .gallery-title h3 {
        font-size: 0.95rem;
    }

    .gallery-inquire {
        display: none !important;
    }

    .gallery-nav {
        width: 38px;
        height: 38px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-main-image {
        margin: 0 8px;
        border-radius: 8px;
    }

    .gallery-thumbnails {
        padding: 12px 16px 16px;
        justify-content: flex-start;
    }

    .gallery-thumb {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .product-image-count {
        opacity: 1;
        transform: translateY(0);
    }

    .section {
        padding: 70px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        z-index: 999;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 20px;
    }

    .nav-links.open a {
        font-size: 1.2rem;
        padding: 14px 28px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-anim {
        width: 320px;
        height: 320px;
    }

    .hero-ring-1 { width: 180px; height: 180px; }
    .hero-ring-2 { width: 250px; height: 250px; }
    .hero-ring-3 { width: 310px; height: 310px; }

    .hero-center {
        width: 90px;
        height: 90px;
    }

    .hero-center-num {
        font-size: 1.8rem;
    }

    .hero-center-text {
        font-size: 0.5rem;
        letter-spacing: 3px;
    }

    .hero-float svg {
        width: 28px;
        height: 28px;
        padding: 7px;
        border-radius: 10px;
    }

    .hero-float span {
        display: none;
    }

    .hero-line {
        display: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .category-grid,
    .product-grid,
    .products-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 30px 24px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-anim {
        width: 260px;
        height: 260px;
    }

    .hero-ring-1 { width: 150px; height: 150px; }
    .hero-ring-2 { width: 200px; height: 200px; }
    .hero-ring-3 { width: 250px; height: 250px; }

    .hero-center {
        width: 76px;
        height: 76px;
    }

    .hero-center-num {
        font-size: 1.5rem;
    }

    .hero-float svg {
        width: 24px;
        height: 24px;
        padding: 5px;
        border-radius: 8px;
    }

    .hero-dot {
        display: none;
    }

    .category-grid,
    .product-grid,
    .products-full-grid {
        grid-template-columns: 1fr;
    }

    .trusted-logos {
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
