/*
Theme Name: GAHUMITOWEL
Theme URI: https://gahumitowel.com
Author: GahumiTowel
Description: Professional B2B towel manufacturer theme for GAHUMITOWEL. Features responsive design, product showcases, customization options, and factory tour timeline.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gahumitowel
Tags: custom-background, threaded-comments, translation-ready, featured-images, responsive-layout
*/

/* ============================================
   1. CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   2. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.text-orange-600 { color: #ea580c; }
.text-blue-900 { color: #1e3a8a; }
.text-white { color: #ffffff; }
.text-gray-900 { color: #111827; }
.text-gray-700 { color: #374151; }
.text-gray-500 { color: #6b7280; }
.text-gray-400 { color: #9ca3af; }

/* ============================================
   3. Layout & Container
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.section {
    padding: 6rem 0;
}

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-950 { background-color: #030712; }
.bg-blue-900 { background-color: #1e3a8a; }

/* ============================================
   4. Navigation Bar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.navbar-brand-name {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    color: #1e3a8a;
    transition: color 0.3s;
}

.navbar-brand-name:hover {
    color: #1e40af;
}

.navbar-brand-name span {
    color: #ea580c;
}

.navbar-brand-tagline {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    font-weight: 600;
    color: #111827;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.navbar-link:hover {
    color: #ea580c;
    border-bottom-color: #ea580c;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
}

.navbar-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.navbar-dropdown-item:hover {
    background: #fff7ed;
    color: #ea580c;
}

.navbar-dropdown-item:last-child {
    border-bottom: none;
}

.navbar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ea580c;
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.navbar-btn:hover {
    background: #c2410c;
    transform: scale(1.05);
}

.navbar-btn:active {
    transform: scale(0.95);
}

/* Mobile Menu Toggle */
.navbar-mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #1f2937;
    padding: 0.5rem;
}

/* Mobile Menu */
.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-height: 100vh;
    overflow-y: auto;
    padding: 1rem 1.5rem 5rem;
}

.navbar-mobile-menu.active {
    display: block;
}

.navbar-mobile-section {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.navbar-mobile-link {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border-left: 2px solid transparent;
    transition: all 0.3s;
}

.navbar-mobile-link:hover {
    border-left-color: #f97316;
    background: #f9fafb;
}

.navbar-mobile-btn {
    width: 100%;
    background: #ea580c;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1023px) {
    .navbar-menu { display: none; }
    .navbar-btn { display: none; }
    .navbar-mobile-toggle { display: block; }
}

/* ============================================
   5. Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.95), rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 80px;
}

.hero-inner {
    max-width: 48rem;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-badge-line {
    width: 3rem;
    height: 1px;
    background: #fb923c;
}

.hero-badge-text {
    color: #fb923c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-title span {
    background: linear-gradient(to right, #fb923c, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-description {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons { flex-direction: row; }
}

.btn-primary {
    background: white;
    color: #1e3a8a;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f3f4f6;
}

.btn-secondary {
    background: #ea580c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #ea580c;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(234, 88, 12, 0.2);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #c2410c;
}

.hero-certifications {
    display: flex;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
}

.hero-certification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-certification i {
    color: #4ade80;
    font-size: 1.25rem;
}

/* ============================================
   6. Products Section
   ============================================ */
.products-section {
    scroll-margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    color: #ea580c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
    position: relative;
    height: 20rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.product-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover .product-card-image {
    transform: scale(1.1);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.4), transparent);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.product-card:hover .product-card-overlay {
    opacity: 0.9;
}

.product-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(1rem);
    transition: transform 0.5s;
}

.product-card:hover .product-card-content {
    transform: translateY(0);
}

.product-card-badge {
    color: #fb923c;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.product-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.product-card-description {
    font-size: 0.875rem;
    color: #d1d5db;
    opacity: 0;
    transition: opacity 0.5s 0.1s;
}

.product-card:hover .product-card-description {
    opacity: 1;
}

.product-card-link {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom: 2px solid #f97316;
    margin-top: 1rem;
    padding-bottom: 0.25rem;
    width: max-content;
    opacity: 0;
    transition: opacity 0.3s 0.2s;
}

.product-card:hover .product-card-link {
    opacity: 1;
}

/* ============================================
   7. Product List & Detail
   ============================================ */
.product-list-section,
.single-product-section {
    scroll-margin-top: 80px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-button:hover {
    color: #ea580c;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .product-detail-layout { flex-direction: row; }
}

.product-detail-image {
    flex: 1;
}

.product-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-detail-info {
    flex: 1;
}

.product-detail-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.product-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 1.5rem;
}

.product-detail-description {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.product-detail-features {
    margin-bottom: 2rem;
}

.product-detail-features h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-feature-item i {
    color: #22c55e;
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.product-specs {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-specs h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-spec-item label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
}

.product-spec-item span {
    font-weight: 600;
    color: #111827;
}

.product-detail-actions {
    display: flex;
    gap: 1rem;
}

.product-detail-actions .btn-primary,
.product-detail-actions .btn-secondary {
    flex: 1;
}

/* ============================================
   8. Customization Section (Tabs)
   ============================================ */
.customization-section {
    scroll-margin-top: 80px;
}

.customization-container {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 500px;
}

@media (min-width: 1024px) {
    .customization-container { flex-direction: row; }
}

.customization-tabs {
    flex: 1;
    background: #1e3a8a;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.customization-tab-btn {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bfdbfe;
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.customization-tab-btn:hover {
    background: #1e40af;
    color: white;
}

.customization-tab-btn.active {
    color: white;
    background: #1e40af;
    border-left-color: #f97316;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.customization-tab-btn i {
    font-size: 1.5rem;
}

.customization-content {
    flex: 2;
    padding: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    background: white;
}

.customization-tab-content {
    width: 100%;
}

.customization-tab-content.hidden {
    display: none;
}

.customization-content-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .customization-content-layout { flex-direction: row; }
}

.customization-content-image {
    flex: 1;
}

.customization-content-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.customization-content-text {
    flex: 1;
}

.customization-content-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.customization-content-text p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.customization-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.customization-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.customization-feature-item i {
    color: #22c55e;
    font-size: 1.125rem;
}

/* ============================================
   9. Factory Tour Section (Timeline)
   ============================================ */
.factory-section {
    scroll-margin-top: 80px;
}

.factory-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .factory-header { flex-direction: row; }
}

.factory-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.factory-steps {
    position: relative;
}

.factory-steps-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 1rem;
    overflow-x: auto;
}

.factory-step-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
    color: #9ca3af;
    font-weight: 700;
    transition: all 0.3s;
}

.factory-step-btn:hover {
    color: #2563eb;
}

.factory-step-btn.active {
    color: #ea580c;
}

.factory-step-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #f3f4f6;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.factory-step-btn:hover .factory-step-circle {
    background: #eff6ff;
}

.factory-step-btn.active .factory-step-circle {
    background: #fed7aa;
    color: #ea580c;
}

.factory-step-divider {
    display: none;
    flex: 1;
    height: 1px;
    background: #e5e7eb;
    margin: 0 1rem;
}

@media (min-width: 768px) {
    .factory-step-divider { display: block; }
}

.factory-content {
    position: relative;
    height: 450px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: #111827;
    border: 4px solid white;
}

.factory-step-content {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s;
}

.factory-step-content.active {
    opacity: 1;
    pointer-events: auto;
}

.factory-step-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.factory-step-text {
    position: absolute;
    bottom: 2.5rem;
    left: 2rem;
    color: white;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .factory-step-text { left: 3rem; }
}

.factory-step-badge {
    background: #ea580c;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.factory-step-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.factory-step-description {
    font-size: 1.125rem;
    color: #e5e7eb;
}

/* ============================================
   10. Blog Section
   ============================================ */
.blog-section {
    scroll-margin-top: 80px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.blog-header h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
}

.blog-header p {
    color: #6b7280;
    margin-top: 0.5rem;
}

.blog-header-link {
    color: #ea580c;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.blog-header-link:hover {
    text-decoration: underline;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    border-top: 4px solid transparent;
}

.blog-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.blog-card:hover:nth-child(1) { border-top-color: #22c55e; }
.blog-card:hover:nth-child(2) { border-top-color: #ea580c; }
.blog-card:hover:nth-child(3) { border-top-color: #a855f7; }

.blog-card-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.blog-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.blog-card-tag:nth-child(1) { background: #dcfce7; color: #15803d; }
.blog-card-tag:nth-child(2) { background: #ffedd5; color: #c2410c; }
.blog-card-tag:nth-child(3) { background: #f3e8ff; color: #7e22ce; }

.blog-card-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.5;
}

.blog-card-title:hover {
    color: #1d4ed8;
}

.blog-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   11. Footer CTA Section
   ============================================ */
.footer-cta {
    position: relative;
    padding: 6rem 0;
    background: #1e3a8a;
    overflow: hidden;
}

.footer-cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.footer-cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.footer-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-cta-title { font-size: 3rem; }
}

.footer-cta-description {
    color: #dbeafe;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer-cta-buttons { flex-direction: row; }
}

.btn-footer-primary {
    background: white;
    color: #1e3a8a;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s;
}

.btn-footer-primary:hover {
    background: #ea580c;
    color: white;
    transform: scale(1.05);
}

.btn-footer-secondary {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   12. Footer
   ============================================ */
.footer {
    background: #030712;
    color: white;
    padding: 4rem 0;
    border-top: 1px solid #1f2937;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.footer-brand span {
    color: #ea580c;
}

.footer-brand-description {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #9ca3af;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: white;
}

.footer-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-contact-item i {
    color: #f97316;
    font-size: 1.25rem;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #4b5563;
}

.footer-bottom a {
    color: #6b7280;
}

.footer-bottom a:hover {
    color: #9ca3af;
}

/* ============================================ */
/* 13. Modal - Using Tailwind classes */
/* ============================================ */

.toast-container {
    position: fixed;
    top: 6rem;
    right: 1rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    min-width: 320px;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.toast.show {
    transform: translateX(0);
}

.toast.hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.toast-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.toast-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.toast-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-success .toast-icon { color: #22c55e; }
.toast-error .toast-icon { color: #ef4444; }
.toast-warning .toast-icon { color: #eab308; }
.toast-info .toast-icon { color: #3b82f6; }

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.toast-success .toast-title { color: #15803d; }
.toast-error .toast-title { color: #dc2626; }
.toast-warning .toast-title { color: #b45309; }
.toast-info .toast-title { color: #1d4ed8; }

.toast-message {
    color: #374151;
    font-size: 0.875rem;
}

.toast-close {
    color: #9ca3af;
    transition: color 0.3s;
}

.toast-close:hover {
    color: #4b5563;
}

/* ============================================
   15. Animations
   ============================================ */
.fade-in-active {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================
   16. Utilities
   ============================================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.transition { transition: all 0.3s; }
.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Phosphor Icons - Inline SVG Support */
i[class^="ph-"] {
    display: inline-block;
    font-style: normal;
    line-height: 1;
}