/* ============================================================================
   PRAHA GROWTH - FINAL CORRECTED CSS
   All Errors Fixed From User Notes | Production Ready
   ============================================================================ */

:root {
    --primary-color: #f0aa2e;
    --dark-bg: #000;
    --card-bg: #111;
    --text-primary: #fff;
    --text-secondary: #aaa;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-lighter: rgba(255, 255, 255, 0.05);
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark-bg);
    color: var(--text-primary);
    padding-top: 120px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

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

/* ============================================================================
   NAVBAR STYLES
   ============================================================================ */

/* ============================================================================
   NAVBAR - FIXED (Visible on page load)
   ============================================================================ */

.navbar {
    width: 90%;
    margin: 30px auto;
    padding: 12px 40px;
    border-radius: 50px;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    
    /* ✅ FIXED: Initially visible instead of hidden */
    top: 20px;           /* ← CHANGED: from -120px to 20px */
    opacity: 1;          /* ← CHANGED: from 0 to 1 */
    visibility: visible; /* ← ADDED: ensure visibility */
    
    transition: top var(--transition-slow), opacity var(--transition-slow), visibility var(--transition-slow);
}

/* Show state - navbar scrolled up */
.navbar.show {
    top: 20px;
    opacity: 1;
    visibility: visible;
}

/* Hide state - navbar scrolled down */
.navbar.hide {
    top: -120px;
    opacity: 0;
    visibility: hidden;
}

.logo img {
    height: 35px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.logo img:hover {
    transform: scale(1.12);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

nav a {
    margin-left: 25px;
    font-size: 14px;
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.nav-btn {
    background: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    color: #000;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.nav-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

nav a:not(.nav-btn) {
    position: relative;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff 50%, #ccc 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 5px;
    transition: background-position 0.4s ease;
}

nav a:not(.nav-btn):hover {
    background-position: left bottom;
}

nav a:not(.nav-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s ease;
}

nav a:not(.nav-btn):hover::after {
    width: 100%;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    position: relative;
    margin-top: -20px;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(240, 170, 46, 0.35) 0%,
        rgba(240, 170, 46, 0.25) 25%,
        rgba(240, 170, 46, 0.15) 45%,
        rgba(240, 170, 46, 0.08) 60%,
        rgba(240, 170, 46, 0.03) 75%,
        transparent 90%
    );
    background-size: 600px 600px;
    background-repeat: no-repeat;
    background-position: center;
    animation: waveGlow 6s ease-in-out infinite alternate;
}

@keyframes waveGlow {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.9) 35%,
        rgba(0, 0, 0, 0.6) 55%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 90%
    );
    mask-size: 100% 100%;
    -webkit-mask-image: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.9) 35%,
        rgba(0, 0, 0, 0.6) 55%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 90%
    );
    -webkit-mask-size: 100% 100%;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 20px;
    transform: translateY(-30px);
}

.hero h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    transform: translateY(-30px);
}

.hero h1 span {
    color: var(--primary-color);
}

.subtext {
    font-size: 20px;
    margin: 8px auto;
    max-width: 700px;
    color: var(--text-secondary);
    transform: translateY(-18px);
}

.hero-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold {
    padding: 12px 25px;
    margin-top: 40px;
    background: var(--primary-color);
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 15px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 170, 46, 0.3);
}

.arrow-icon {
    width: 18px;
    transition: transform 0.3s ease;
}

.btn-gold:hover .arrow-icon {
    transform: translateX(4px);
}

.scroll-indicator {
    margin-top: 60px;
    text-align: center;
}

.custom-scroll-icon {
    width: 30px;
    display: block;
    margin: 0 auto;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite alternate;
}

.hero > *:not(.shape) {
    position: relative;
    z-index: 1;
}

.circle-fill {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 22%;
    left: 18%;
}

.circle-stroke {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 60%;
    right: 15%;
}

.square-stroke {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    bottom: 30%;
    left: 10%;
}

@keyframes float {
    from {
        transform: translateY(0px) rotate(0deg);
    }
    to {
        transform: translateY(-25px) rotate(5deg);
    }
}

.hero-content > * {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-content.show > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-content.show .tag {
    transition-delay: 0.2s;
}

.hero-content.show h1 {
    transition-delay: 0.4s;
}

.hero-content.show .subtext {
    transition-delay: 0.6s;
}

.hero-content.show .btn-gold {
    transition-delay: 0.8s;
}

.hero-content.show .scroll-indicator {
    transition-delay: 1s;
}

/* ============================================================================
   COMMON SECTIONS
   ============================================================================ */

section {
    padding: 120px 8%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto 60px;
}

.section-tag {
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 48px;
    margin: 15px 0;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */

.services {
    position: relative;
    overflow: hidden;
    margin-top: -80px;
}

.services::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    left: -200px;
    bottom: -200px;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        circle,
        rgba(240, 170, 46, 0.07) 0%,
        rgba(240, 170, 46, 0.05) 20%,
        rgba(240, 170, 46, 0.03) 40%,
        rgba(240, 170, 46, 0.015) 55%,
        transparent 75%
    );
    filter: blur(60px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 40px;
    min-height: 280px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-lighter);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(240, 170, 46, 0.4), 0 0 60px rgba(240, 170, 46, 0.2);
}

.service-icon {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
}

.service-card h3 {
    position: absolute;
    top: 125px;
    left: 40px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card p {
    position: absolute;
    top: 160px;
    left: 40px;
    right: 40px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.5;
}

.read-more {
    position: absolute;
    left: 40px;
    bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.read-more .arrow {
    transition: transform var(--transition-normal);
}

.read-more:hover .arrow {
    transform: translateX(6px);
}

.read-more:hover {
    color: var(--text-primary);
}

/* ============================================================================
   SERVICE PAGES
   ============================================================================ */

.service-hero {
    margin-top: -80px;
    text-align: center;
    padding: 120px 10% 80px;
    background: var(--dark-bg);
}

.service-hero h1 {
    font-size: 44px;
}

.service-hero span {
    color: var(--primary-color);
}

.service-hero p {
    color: var(--text-secondary);
    margin-top: 10px;
}

.service-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: auto;
}

.service-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
}

.service-text {
    flex: 1;
}

.service-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.service-text h2 {
    font-size: 38px;
    margin: 15px 0;
}

.highlight {
    background: var(--primary-color);
    color: #000;
    padding: 5px 10px;
}

.service-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.service-image img {
    max-width: 420px;
}

.service-details {
    max-width: 900px;
    margin: 80px auto 0;
    line-height: 1.8;
    color: #bbb;
}

/* ============================================================================
   ABOUT SECTION - FIX: Image on right side
   ============================================================================ */

.about {
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.about::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(240, 170, 46, 0.08) 0%,
        rgba(240, 170, 46, 0.05) 30%,
        rgba(240, 170, 46, 0.03) 50%,
        transparent 75%
    );
    filter: blur(100px);
    pointer-events: none;
}

.about-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-left {
    flex: 1;
    min-width: 320px;
}

.about-left h2 {
    font-size: 48px;
    margin: 20px 0;
}

.about-left h2 span {
    color: var(--primary-color);
}

.about-left p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(240, 170, 46, 0.3), 0 0 40px rgba(240, 170, 46, 0.15);
}

.about-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(240, 170, 46, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-icon img {
    width: 26px;
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

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

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 35px;
    margin-left: -90px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.read-more-btn::after {
    content: "→";
    transition: transform 0.3s ease;
}

.read-more-btn:hover::after {
    transform: translateX(6px);
}

.read-more-btn:hover {
    color: var(--text-primary);
}

/* About Page Styles - FIX: Image aligned right */
.about-extended {
    padding: 120px 10%;
    background: var(--dark-bg);
    color: var(--text-primary);
}

.about-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
    margin-top: -80px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    order: 2;
    min-width: 300px;
}

.about-image img {
    width: 600px;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-text {
    max-width: 600px;
    order: 1;
    flex: 1;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-text span {
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(240, 170, 46, 0.25);
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.about-card:hover h3 {
    color: var(--primary-color);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   PROCESS SECTION
   ============================================================================ */

.process-section {
    padding: 120px 8%;
    text-align: center;
    margin-top: -80px;
}

.process-title {
    font-size: 48px;
}

.process-title span {
    color: var(--primary-color);
}

.process-subtitle {
    margin: 18px 0 70px;
    color: var(--text-secondary);
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card img {
    width: 70px;
    margin-left: 38px;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 18px;
    color: #ccc;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(240, 170, 46, 0.3), 0 0 40px rgba(240, 170, 46, 0.15);
}

/* ============================================================================
   ADVANTAGE SECTION
   ============================================================================ */

.advantage-section {
    padding: 120px 8%;
    text-align: center;
    margin-top: -80px;
}

.advantage-title {
    font-size: 48px;
}

.advantage-title span {
    color: var(--primary-color);
}

.advantage-subtitle {
    margin: 18px 0 70px;
    color: var(--text-secondary);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.adv-card {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 18px;
    border: 1px solid var(--border-light);
    height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.adv-icon {
    width: 60px;
    display: block;
    margin: 0 auto 15px;
}

.adv-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(240, 170, 46, 0.3), 0 0 40px rgba(240, 170, 46, 0.15);
}

.adv-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.adv-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

/* ============================================================================
   BLOGS SECTION - FIX: Better spacing between sections
   ============================================================================ */

/* ============================================================================
   BLOGS SECTION - PROPER HEADING & SUBHEADING STYLING (FIXED)
   ============================================================================ */

.blogs {
    padding: 120px 8%;
    text-align: center;
    margin-top: 0;
}

.blogs h2 {
    font-size: 48px;
    margin: 15px 0;
}

.blogs h2 span {
    color: var(--primary-color);
}

.blogs-subtext {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blogs-slider {
    position: relative;
    overflow: hidden;
    padding: 40px 70px;
}

.blogs-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.blogs-slider:hover .blogs-track {
    animation-play-state: paused;
}

/* ============================================================================
   BLOG CARD - FIXED UNIFORM SIZE WITH PROPER TEXT STYLING
   ============================================================================ */

.blog-card {
    min-width: 420px;
    max-width: 330px;
    width: 330px;
    height: 300px;
    background: var(--card-bg);
    border-radius: 18px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(240, 170, 46, 0.3), 0 0 60px rgba(240, 170, 46, 0.15);
}

/* ✅ FIXED: Blog card image */
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

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

/* ============================================================================
   BLOG CARD HEADING - PROPER STYLING (h3)
   ============================================================================ */

.blog-card h3 {
    padding: 16px 18px 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    height: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-decoration: none;
    color: var(--text-primary);
    margin: 0;
}

/* ============================================================================
   BLOG CARD SUBHEADING/DESCRIPTION - PROPER STYLING (p)
   ============================================================================ */

.blog-card p {
    padding: 0 18px 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-decoration: none;
    margin-top: -10px;
}

/* ============================================================================
   BLOG CARD READ MORE BUTTON - AT BOTTOM
   ============================================================================ */

.read-article {
    margin-top: -50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0 18px 18px;
    text-decoration: none;
}

.read-article:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

/* Alternative: Read More Link */
.blogs .read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 18px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.blogs .read-more:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

.blogs .read-more .arrow {
    transition: transform 0.3s ease;
}

.blogs .read-more:hover .arrow {
    transform: translateX(6px);
}

.blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s ease;
}

.blog-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(240, 170, 46, 0.3);
}

.blog-arrow.left {
    left: 10px;
}

.blog-arrow.right {
    right: 10px;
}

/* ============================================================================
   BLOG CARD LAYOUT STRUCTURE
   ============================================================================ */

.blog-card {
    /* Layout structure */
    grid-template-rows: auto 1fr auto;
}

/* Make sure content flows properly */
.blog-card > * {
    flex-shrink: 0;
}

.blog-card p {
    flex-shrink: 0;
}

.read-article,
.blogs .read-more {
    flex-shrink: 0;
}

/* Blog Pages */
.blog-hero {
    margin-top: -50px;
    text-align: center;
    padding: 120px 10% 60px;
    background: var(--dark-bg);
}

.blog-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-hero p {
    color: var(--text-secondary);
    font-size: 18px;
}

.blog-image img {
    width: 100%;
    max-width: 900px;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
    margin-top: -40px;
}

.blog-content {
    max-width: 900px;
    margin: auto;
    padding: 20px 20px 120px;
    line-height: 1.8;
}

.blog-content h2 {
    margin-top: 35px;
    font-size: 22px;
}

.blog-content p {
    margin-top: 10px;
    color: #bbb;
}

.blog-conclusion {
    margin-top: 40px;
    font-weight: 500;
}

/* Blog Navigation Buttons - Previous & Next Article */
.blog-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.blog-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-nav-btn.next {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    margin-left: auto;
}

.blog-nav-btn.prev {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-light);
}

.blog-nav-btn.prev:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.blog-nav-btn.next:hover {
    background: rgba(240, 170, 46, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 170, 46, 0.3);
}

.blog-nav-btn .arrow {
    transition: transform 0.3s ease;
}

.blog-nav-btn.next:hover .arrow {
    transform: translateX(4px);
}

.blog-nav-btn.prev:hover .arrow {
    transform: translateX(-4px);
}

/* ============================================================================
   REVIEWS SECTION - FIX: Better gap management
   ============================================================================ */

.reviews-section {
    text-align: center;
    padding: 120px 10%;
    position: relative;
    margin-top: 0;
    scroll-margin-top: 150px;
}

.reviews-container {
    max-width: 900px;
    margin: auto;
}

.reviews-title {
    font-size: 64px;
    font-weight: 700;
    margin-top: 15px;
}

.reviews-title span {
    color: var(--primary-color);
}

.reviews-subtext {
    margin-top: 18px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #8b96a5;
}

.reviews-slider {
    max-width: 700px;
    margin: 60px auto 0;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

.review-card {
    min-width: 100%;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    text-align: center;
}

.review-stars {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.review-card h4 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.review-btn {
    margin-top: 25px;
    padding: 14px 38px;
    border: none;
    border-radius: 40px;
    background: var(--primary-color);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 170, 46, 0.35);
}

/* Review Popup - FIX: Improved spacing */
.review-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.review-modal {
    width: 520px;
    background: var(--card-bg);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-title {
    margin-bottom: 22px;
}

.review-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 2px solid var(--border-light);
    background: #0b0b0b;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

select {
    padding: 12px 16px;
    padding-right: 45px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23f0aa2e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-color: #0b0b0b;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(240, 170, 46, 0.1);
}

/* Style select options */
select option {
    background: #111;
    color: #fff;
    padding: 12px;
    margin: 4px 0;
}

select option:hover {
    background: var(--primary-color);
    color: #000;
}

select option:checked {
    background: linear-gradient(var(--primary-color), var(--primary-color));
    color: #000;
}

textarea {
    height: 120px;
    padding: 14px;
    border-radius: 12px;
    margin-top: 8px;
    resize: none;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(240, 170, 46, 0.2);
}

.rating-stars {
    margin: 12px 0;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.star {
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.star.active {
    color: var(--primary-color);
}

.review-actions {
    display: flex;
    gap: 15px;
    margin-top: 22px;
    align-items: stretch;
}

.cancel-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px;
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-btn:hover {
    background: rgba(240, 170, 46, 0.1);
}

.submit-btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(240, 170, 46, 0.3);
}

/* ============================================================================
   FORM SUCCESS MESSAGE
   ============================================================================ */

.review-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.success-card {
    width: 420px;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #000;
    margin: 0 auto 20px;
}

.success-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.success-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
}

.success-btn {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.faq-section {
    padding: 120px 8%;
    margin-top: 80px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-header h2 span {
    color: var(--primary-color);
}

.faq-subtext {
    max-width: 650px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    padding: 20px 24px;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(240, 170, 46, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    gap: 20px;
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    margin-top: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: max-height 0.35s ease;
}

.faq-card.active .faq-answer {
    max-height: 200px;
}

.faq-arrow {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-card.active .faq-arrow {
    transform: rotate(45deg);
}

/* ============================================================================
   CONTACT SECTION - FIX: Proper form spacing
   ============================================================================ */

.contact {
    padding: 140px 10%;
}

.contact-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    opacity: 0;
    transform: translateX(-80px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.contact-left.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

.contact-tag {
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-left h2 {
    font-size: 48px;
    margin: 10px 0;
}

.contact-left h2 span {
    color: var(--primary-color);
}

.contact-desc {
    color: #8b96a5;
    max-width: 420px;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateX(80px);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.contact-form.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group.full {
    width: 100%;
}

.submit-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 40px;
    background: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 170, 46, 0.3);
}

.form-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.success-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 320px;
    border: 1px solid var(--border-light);
}

.tick {
    color: #000;
    font-size: 32px;
    font-weight: bold;
}

.success-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
}

.success-box p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
}

.success-box button {
    margin-top: 20px;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    background: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.success-box button:hover {
    transform: translateY(-2px);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    width: 100%;
    padding: 70px 0 30px;
    background: #0d0d0d;
}

.footer-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-logo img {
    width: 140px;
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: rgba(240, 170, 46, 0.2);
    transform: translateY(-2px);
}

.social-icons img {
    width: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-col address {
    color: var(--text-secondary);
    font-style: normal;
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    width: 80%;
    margin: 50px auto 0;
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    color: var(--text-secondary);
}

/* ============================================================================
   LEGAL PAGES
   ============================================================================ */

.terms-section {
    padding: 100px 0;
}

.terms-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 40px;
    line-height: 1.8;
}

.terms-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.terms-brand {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-weight: 500;
}

.terms-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.terms-block p {
    font-size: 16px;
    color: #b5b5b5;
    margin-bottom: 18px;
    text-align: justify;
}

.terms-block ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.terms-block ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #b5b5b5;
}

.terms-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.refund-policy {
    max-width: 1100px;
    margin: 80px auto;
    padding: 50px 60px;
    line-height: 1.8;
}

.refund-policy h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.refund-policy h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.refund-policy p {
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
    color: var(--text-secondary);
}

.refund-policy ul {
    margin-left: 22px;
    margin-bottom: 18px;
}

.refund-policy ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--text-secondary);
}

.privacy-policy {
    max-width: 1100px;
    margin: 80px auto;
    padding: 50px 60px;
    line-height: 1.8;
}

.privacy-policy h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.privacy-policy h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.privacy-policy p {
    font-size: 16px;
    margin-bottom: 18px;
    text-align: justify;
    color: #aaa;
}

.privacy-policy ul {
    margin-left: 22px;
    margin-bottom: 18px;
    color: #aaa;
}

.privacy-policy ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.privacy-policy strong {
    color: var(--primary-color);
}

/* ============================================================================
   WHATSAPP FLOATING BUTTON
   ============================================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    overflow: visible;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    z-index: 1;
    animation: whatsappWave 1.5s ease-out infinite;
}

@keyframes whatsappWave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* ============================================================================
   PAGE LOADER
   ============================================================================ */

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 200px;
    margin-bottom: 25px;
    animation: logoFade 1.6s ease forwards;
}

@keyframes logoFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-line {
    width: 200px;
    height: 3px;
    background: #222;
    overflow: hidden;
    position: relative;
}

.loader-line::after {
    content: "";
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    animation: loadingMove 1.4s linear infinite;
}

@keyframes loadingMove {
    0% {
        left: -40%;
    }
    100% {
        left: 100%;
    }
}

/* ============================================================================
   REVEAL ANIMATIONS
   ============================================================================ */

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: transform 0.7s ease, opacity 0.7s ease;
    will-change: transform, opacity;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: transform 0.7s ease, opacity 0.7s ease;
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: transform 0.7s ease, opacity 0.7s ease;
    will-change: transform, opacity;
}

   .reveal-active {
       opacity: 1;
       transform: translateY(0) translateX(0) ;
       transition: transform 0.7s ease, opacity 0.7s ease ;
   }

body {
    opacity: 0;
    transition: opacity 0.35s ease;
}

body.page-loaded {
    opacity: 1;
}

body.page-leave {
    opacity: 0;
}

/* ============================================================================
   RESPONSIVE DESIGN - TABLET
   ============================================================================ */

@media (max-width: 1024px) {
    section {
        padding: 100px 6%;
    }

    .hero h1 {
        font-size: 56px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .about-left {
        max-width: 700px;
        margin: auto;
    }

    .about-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .about-box {
        width: 100%;
        max-width: 500px;
    }

    .read-more-btn {
        margin-left: 30px;
    }

    .service-container {
        flex-direction: column;
        text-align: center;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .adv-card {
        height: auto;
        min-height: 240px;
        padding: 30px 20px;
    }

    .adv-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .about-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .about-image img {
        width: 420px;
        max-width: 100%;
    }

    .about-text {
        max-width: 700px;
        margin: auto;
    }

    .contact-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .contact-left {
        text-align: center;
        max-width: 700px;
        margin: auto;
    }

    .contact-desc {
        margin: auto;
        text-align: center;
    }

    .contact-form {
        margin: auto;
        max-width: 500px;
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    nav a {
        margin-left: 15px;
        font-size: 13px;
    }
}

/* ============================================================================
   RESPONSIVE DESIGN - MOBILE
   ============================================================================ */

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 10px 20px;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .subtext {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-left h2 {
        font-size: 34px;
    }

    .blogs-slider {
        padding: 20px;
    }

    .process-container {
        grid-template-columns: 1fr 1fr;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .blogs .blog-card {
        min-width: 260px;
        height: 300px;
    }

    .blogs .blog-card img {
        height: 170px;
    }

    .blogs .blog-card h3 {
        font-size: 18px;
    }

    .blogs .blog-card p {
        font-size: 14px;
    }

    .contact-form {
        max-width: 420px;
        width: 100%;
        padding: 25px;
        margin: auto;
    }

    .process-card img {
        margin: 0 auto 20px;
        display: block;
    }

    .read-more-btn {
        margin-left: 0;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .privacy-policy {
        padding: 40px 25px;
    }

    .privacy-policy h1 {
        font-size: 28px;
    }

    .privacy-policy h2 {
        font-size: 20px;
    }
}

/* ============================================================================
   MOBILE HAMBURGER MENU
   ============================================================================ */

.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: absolute;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: var(--card-bg);
        border-radius: 20px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        border: 1px solid var(--border-light);
        z-index: 999;
    }

    nav.active {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    nav a {
        margin: 0;
        padding: 12px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }

    nav a:hover {
        background: rgba(240, 170, 46, 0.1);
    }
}