/* =========================================
   1. GLOBAL VARIABLES & RESETS
   ========================================= */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --orange: #FF5722;
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { width: 90%; max-width: 1400px; margin: 0 auto; }

/* =========================================
   2. CUSTOM CURSORS
   ========================================= */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--white);
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999; 
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-radius 0.2s;
}

.cursor-text {
    position: fixed;
    top: 0; left: 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    z-index: 9999999;
    transition: opacity 0.3s;
    text-align: center;
    white-space: nowrap;
}

/* Hover States */
.custom-cursor.hover-reel,
.custom-cursor.view-more,
.custom-cursor.view-trending {
    width: 80px; 
    height: 80px;
    background-color: var(--orange);
    border-radius: 50%;
}

.custom-cursor.hover-reel + .cursor-text,
.custom-cursor.view-more + .cursor-text,
.custom-cursor.view-trending + .cursor-text {
    opacity: 1;
    color: var(--white);
    transform: translate(-50%, -50%);
}

/* Footer Marquee Cursor */
.cursor-marquee-wrapper {
    position: fixed;
    top: 0; left: 0;
    width: 0px; height: 45px; 
    border-radius: 50px;
    background-color: var(--white);
    mix-blend-mode: difference; 
    pointer-events: none;
    z-index: 9999999;
    overflow: hidden;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.cursor-marquee-wrapper.active {
    width: 150px;
    opacity: 1;
}

.cursor-marquee-track {
    display: flex;
    white-space: nowrap;
    color: var(--black); 
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    animation: cursorMarqueeAnim 3s linear infinite;
}

.cursor-marquee-track span { padding-right: 15px; }

@keyframes cursorMarqueeAnim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (hover: none) and (pointer: coarse) {
    * { cursor: auto !important; }
    .custom-cursor, .cursor-text, .cursor-marquee-wrapper { display: none !important; }
    .massive-text-wrapper { cursor: auto; }
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar {
    width: 100%;
    padding: 25px 5%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    position: sticky;
    top: 0;
}

.logo { 
    font-family: var(--font-head); 
    font-weight: 800; font-size: 1.5rem; 
    letter-spacing: -0.5px;
    display: flex; align-items: center;
    justify-self: start;
}
.logo-dynamic-text { font-weight: 400; display: inline-block; }

.nav-links { display: flex; gap: 35px; list-style: none; align-items: center; justify-self: center; }
.nav-links a { color: var(--black); text-decoration: none; font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; }
.chevron { margin-left: 6px; font-size: 1.1rem; transform: translateY(-2px); }

.btn-primary { 
    background: var(--black); color: var(--white) !important; 
    padding: 12px 24px; border-radius: 50px; 
    font-weight: 600; font-size: 0.9rem; text-decoration: none;
    transition: 0.3s; justify-self: end;
}
.btn-primary:hover { background: #333; }

/* =========================================
   4. HERO & VIDEO
   ========================================= */
.hero { display: flex; flex-direction: column; padding-top: 80px; }
.hero-top { padding-bottom: 30px; } 

.hero-sub { font-size: 1.25rem; max-width: 800px; line-height: 1.6; color: #444; font-weight: 400; }

.outline-marquee-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    padding: 30px 0 60px 0; 
}
.outline-marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left-outline 20s linear infinite;
}
.outline-marquee-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.outline-marquee-text {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 6vw, 6rem); 
    font-weight: 800;
    text-transform: uppercase;
    color: transparent; 
    -webkit-text-stroke: 1.5px var(--black); 
    margin: 0 45px; 
    letter-spacing: 1px;
}

@keyframes scroll-left-outline {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.showreel-wrapper { 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    padding-bottom: 100px; 
}
.showreel-container {
    width: 85%; 
    height: 60vh; 
    border-radius: 24px; 
    overflow: hidden;
    background-color: var(--black); 
    transform-origin: center top;
    position: relative; 
}
.showreel-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    position: absolute;
    top: 0; left: 0;
    pointer-events: none; 
    opacity: 0.9; 
}

/* =========================================
   5. ABOUT
   ========================================= */
.about-section {
    position: relative; padding: 150px 0;
    background-color: var(--white); overflow: hidden;
    border-top: 1px solid #EAEAEA; border-bottom: 1px solid #EAEAEA;
}
.about-flex-layout { display: flex; justify-content: space-between; align-items: flex-start; position: relative; }
.about-left { width: 35%; flex-shrink: 0; position: relative; z-index: 2; }
.about-left h2 { font-family: var(--font-head); font-size: clamp(2rem, 2.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 50px 0; }
.arrow-visual-anchor { position: relative; width: 280px; height: 280px; }
.circles-row { position: absolute; top: 0; left: 0; display: flex; width: 200vw; z-index: 1; pointer-events: none; }
.geom-circle { width: 280px; height: 280px; border: 1px solid #E0E0E0; border-radius: 50%; flex-shrink: 0; margin-right: -90px; }
.arrow-wrapper { position: absolute; top: 0; left: 0; width: 280px; height: 280px; display: flex; justify-content: center; align-items: center; z-index: 5; }
.tracking-arrow { width: 90px !important; height: 90px !important; display: block; transform-origin: center center; will-change: transform; }
.about-right { width: 55%; flex-shrink: 0; position: relative; z-index: 10; padding-top: 10px; }
.about-headline { font-family: var(--font-head); font-size: clamp(2.2rem, 3.2vw, 3.5rem); line-height: 1.15; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 40px; color: var(--black); }
.about-desc { font-size: 1.15rem; line-height: 1.6; color: #555; margin-bottom: 50px; max-width: 95%; font-weight: 400; }

/* =========================================
   6. SOLUTIONS ACCORDION
   ========================================= */
.solutions-section { width: 100%; height: 90vh; background-color: var(--white); overflow: hidden; border-bottom: 1px solid #EAEAEA; }
.solutions-container { display: flex; width: 100%; height: 100%; }
.solution-card {
    flex: 1; height: 100%; border-right: 1px solid #EAEAEA;
    background-color: var(--white); display: flex; justify-content: center; align-items: center;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease; overflow: hidden;
}
.solution-card:last-child { border-right: none; }
.solution-content { width: 100%; min-width: 300px; padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.solution-card h2 { font-family: var(--font-head); font-size: clamp(2rem, 3vw, 4rem); line-height: 1.1; font-weight: 800; color: #E5E5E5; transition: color 0.4s ease; }
.solution-details {
    opacity: 0; transform: translateY(20px); max-height: 0; margin-top: 0;
    pointer-events: none; display: flex; flex-direction: column; align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.4s ease, margin-top 0.4s;
}
.solution-details p { font-size: 1rem; line-height: 1.5; color: var(--white); margin-bottom: 30px; max-width: 320px; }
.circle-arrow { width: 50px; height: 50px; border-radius: 50%; background-color: var(--white); color: var(--black); display: flex; justify-content: center; align-items: center; font-size: 1.5rem; font-weight: 500; transition: transform 0.3s ease; }
.solution-card:hover .circle-arrow { transform: translateX(5px); }
.solution-card.active { flex: 2.5; }
.solution-card.active h2 { color: var(--white); }
.solution-card.active .solution-details {
    opacity: 1; transform: translateY(0); max-height: 300px; margin-top: 30px;
    pointer-events: auto; transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s, max-height 0.6s ease, margin-top 0.6s;
}

/* =========================================
   7. PACKAGES & PRICING
   ========================================= */
.packages-section { 
    padding: 120px 0; 
    background-color: #FAFAFA; /* Light gray background makes the white cards pop */
    border-bottom: 1px solid #EAEAEA; 
}
.packages-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px; 
}

/* Base Card Styling */
.package-card {
    background-color: var(--white); 
    border: 1px solid #EAEAEA;
    border-radius: 24px; 
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease; 
    display: flex;
    flex-direction: column;
}

/* Premium Hover Animation (Lift & Shadow, No color changes) */
.package-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.08); 
    border-color: #D1D1D1;
}

/* Highlight the Most Popular Card */
.package-card.featured-card {
    border: 2px solid var(--black);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}
.package-card.featured-card:hover {
    border-color: var(--black);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.package-content { 
    padding: 45px 40px; 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
}

/* Headers & Pricing Typography */
.package-header { 
    border-bottom: 1px solid #F0F0F0; 
    padding-bottom: 30px; 
    margin-bottom: 30px; 
}

.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.package-header h3 { 
    font-family: var(--font-head); 
    font-size: 1.6rem; 
    font-weight: 800; 
    color: var(--black);
}

.popular-badge {
    background-color: var(--black); 
    color: var(--white); 
    font-size: 0.7rem; 
    font-weight: 700; 
    text-transform: uppercase;
    padding: 6px 12px; 
    border-radius: 50px; 
    letter-spacing: 0.5px;
}

.objective { 
    font-size: 0.95rem; 
    line-height: 1.5; 
    color: #666; 
    margin-bottom: 25px; 
    min-height: 42px; /* Keeps pricing blocks aligned across cards */
}

/* Premium Pricing Block */
.pricing-block { 
    display: flex; 
    align-items: baseline; 
}
.currency { 
    font-size: 1.5rem; 
    font-weight: 600; 
    color: var(--black); 
    margin-right: 4px; 
}
.price { 
    font-size: 3rem; 
    font-weight: 800; 
    font-family: var(--font-head); 
    letter-spacing: -1px; 
    line-height: 1; 
    color: var(--black);
}
.period { 
    font-size: 1rem; 
    font-weight: 500; 
    color: #888; 
    margin-left: 5px; 
}

/* Lists & Scrolling */
.package-scroll-area {
    height: 320px; 
    overflow-y: auto; 
    margin-bottom: 40px; 
    padding-right: 15px;
    overscroll-behavior: contain; 
}

/* Custom minimal scrollbar */
.package-scroll-area::-webkit-scrollbar { width: 4px; }
.package-scroll-area::-webkit-scrollbar-track { background: transparent; }
.package-scroll-area::-webkit-scrollbar-thumb { background: #E0E0E0; border-radius: 10px; }
.package-card:hover .package-scroll-area::-webkit-scrollbar-thumb { background: #CCC; }

.list-title { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 700; 
    color: #888; 
    margin-bottom: 15px; 
}

.premium-list { list-style: none; padding: 0; margin: 0; }
.premium-list > li { 
    font-size: 0.95rem; 
    line-height: 1.5; 
    padding: 12px 0 12px 30px; 
    border-bottom: 1px solid #F5F5F5; 
    position: relative; 
    color: #444; 
}
.premium-list > li:last-child { border-bottom: none; }
.premium-list > li strong { color: var(--black); font-weight: 700; }

/* Subtle Gold/Orange Checkmark */
.premium-list > li::before {
    content: ''; 
    position: absolute; 
    left: 2px; 
    top: 18px; 
    width: 6px; 
    height: 10px;
    border: solid var(--orange); 
    border-width: 0 2px 2px 0; 
    transform: rotate(45deg); 
}

ul.sub-list { margin-top: 10px; padding-left: 0; }
ul.sub-list li { 
    font-size: 0.9rem !important; 
    padding: 6px 0 6px 20px; 
    border-bottom: none !important; 
    color: #666; 
    position: relative; 
}
ul.sub-list li::before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 14px; 
    width: 4px; 
    height: 4px; 
    background-color: #A0A0A0; 
    border-radius: 50%; 
    border: none; 
    transform: none; 
}

/* Button */
.package-btn { 
    margin-top: auto; 
    text-align: center; 
    width: 100%; 
    padding: 16px; 
    font-size: 1.05rem; 
    background-color: #F5F5F5;
    color: var(--black) !important;
}
.package-card.featured-card .package-btn {
    background-color: var(--black);
    color: var(--white) !important;
}
.package-card:hover .package-btn:not(.featured-card .package-btn) { 
    background-color: #EAEAEA; 
}
.package-card.featured-card:hover .package-btn { 
    background-color: #333; 
}

/* A La Carte Section */
.alacarte-section { margin-top: 80px; background-color: var(--white); border: 1px solid #EAEAEA; border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.alacarte-header { text-align: center; margin-bottom: 30px; }
.alacarte-header h3 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.alacarte-header p { color: #666; font-size: 1.05rem; }
.alacarte-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
.alacarte-item {
    display: flex; justify-content: space-between; align-items: center; background-color: #FAFAFA;
    padding: 15px 20px; border-radius: 8px; border: 1px solid #EAEAEA; font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.alacarte-item:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); background-color: var(--white); }
.alacarte-item span { color: #555; }
.alacarte-item strong { font-family: var(--font-head); font-weight: 700; text-align: right; color: var(--black); }

/* =========================================
   8. TRENDING & CLIENTS
   ========================================= */
.trending-section { padding: 100px 0 150px 0; background-color: var(--white); position: relative; }
.clients-marquee-wrapper {
    width: 100%; overflow: hidden; padding: 50px 0; margin-bottom: 100px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.clients-track { display: flex; white-space: nowrap; gap: 80px; align-items: center; }
.clients-track h2 { font-family: var(--font-head); font-weight: 800; font-size: 3rem; color: transparent; -webkit-text-stroke: 1px #CCC; }
.track-left { animation: scrollLeft 30s linear infinite; margin-bottom: 40px; }
.track-right { animation: scrollRight 35s linear infinite; }

@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.section-title { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; margin-bottom: 50px; }
.trending-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.trending-item { display: block; text-decoration: none; color: var(--black); padding: 40px 0; border-bottom: 1px solid #EAEAEA; transition: opacity 0.3s; }
.trending-item:first-child { border-top: 1px solid #EAEAEA; }
.trending-list:hover .trending-item:not(:hover) { opacity: 0.3; }
.badge { display: inline-block; padding: 6px 16px; border: 1px solid #CCC; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; }
.trending-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; }
.trending-row h3 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; line-height: 1.4; max-width: 80%; }
.read-time { font-size: 0.9rem; color: #888; white-space: nowrap; padding-top: 5px; }

.trending-image-wrapper { position: sticky; top: 150px; width: 100%; height: 400px; border-radius: 12px; overflow: hidden; background-color: #F5F5F5; }
.trend-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s ease; }
.trend-img.active { opacity: 1; }

/* =========================================
   9. FOOTER & TIMEZONES
   ========================================= */
.pre-footer { background-color: var(--white); padding: 80px 0; clear: both; width: 100%; position: relative; z-index: 10; }
.timezones-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.time-pill {
    border: 1.5px solid var(--black); border-radius: 50px; padding: 15px 40px;
    font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--black); text-align: center; min-width: 250px;
}

.main-footer { background-color: var(--black); color: var(--white); overflow: hidden; padding-top: 50px; clear: both; width: 100%; position: relative; z-index: 10; }
.massive-text-wrapper { width: 100%; text-align: center; padding: 20px 0 60px 0; cursor: none; }
.massive-text { font-family: var(--font-head); font-weight: 800; font-size: 22vw; line-height: 0.75; letter-spacing: -0.05em; color: var(--white); margin: 0; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 40px 5%; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.footer-col { flex: 1; }
.social-links { display: flex; gap: 25px; }
.social-links a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 1.1rem; transition: color 0.3s; }
.social-links a:hover { color: var(--gold); }
.footer-nav { display: flex; justify-content: center; gap: 35px; }
.footer-nav a { color: var(--white); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: opacity 0.3s; }
.footer-nav a:hover { opacity: 0.6; }
.copyright { text-align: right; font-size: 0.85rem; color: #888; line-height: 1.5; }

/* =========================================
   10. MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .navbar { grid-template-columns: 1fr auto; }
    .nav-links { display: none; }
    .about-flex-layout { flex-direction: column; gap: 60px; }
    .about-left, .about-right { width: 100%; }
    .arrow-visual-anchor { margin: 0 auto; }
    .solutions-section { height: auto; min-height: 100vh; }
    .solutions-container { flex-direction: column; }
    .solution-card { height: 120px; flex: auto !important; border-right: none; border-bottom: 1px solid #EAEAEA; }
    .solution-card.active { height: 400px; }
    .solution-content { padding: 20px; }
    .packages-grid { grid-template-columns: 1fr; }
    .trending-grid { grid-template-columns: 1fr; }
    .trending-image-wrapper { display: none; }
    .outline-marquee-text { font-size: 2.5rem; }
}

@media (max-width: 900px) {
    .time-pill { width: 100%; padding: 12px 20px; }
    .footer-bottom { flex-direction: column; gap: 30px; text-align: center; }
    .social-links, .footer-nav { justify-content: center; }
    .footer-nav { flex-wrap: wrap; gap: 20px; }
    .copyright { text-align: center; }
    .massive-text { font-size: 24vw; }
}

@media (max-width: 768px) {
    .alacarte-section { padding: 30px 20px; }
    .alacarte-item { flex-direction: column; align-items: flex-start; gap: 5px; }
    .alacarte-item strong { text-align: left; }
}

/* =========================================
   11. CONTACT & BLOG PAGE UTILITIES
   ========================================= */
.cp-wrapper { display: grid; grid-template-columns: 55% 45%; width: 100%; min-height: 100vh; background-color: var(--white); margin-top: -90px; }
.cp-left { padding: 150px 10% 100px 10%; }
.cp-header { margin-bottom: 50px; }
.cp-sub-heading { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 15px; display: block; color: var(--black); }
.cp-main-heading { font-family: var(--font-head); font-size: clamp(2.5rem, 3vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 20px; }
.cp-desc { font-size: 1.05rem; line-height: 1.6; color: #333; max-width: 90%; }
.cp-desc strong { font-weight: 700; color: var(--black); }
.cp-input-group { margin-bottom: 45px; position: relative; }
.cp-input-group label { display: block; font-size: 1.1rem; font-weight: 500; margin-bottom: 15px; color: var(--black); }
.cp-form input[type="text"], .cp-form input[type="email"], .cp-form input[type="tel"], .cp-form input[type="url"], .cp-form textarea {
    width: 100%; border: none; border-bottom: 1px solid #000; background: transparent; padding: 10px 0; font-size: 1.1rem;
    font-family: var(--font-body); outline: none; transition: border-color 0.3s ease; resize: none; overflow: hidden;
}
.cp-form input:focus, .cp-form textarea:focus { border-bottom: 2px solid var(--black); }
.cp-pill-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.cp-pill { cursor: pointer; display: inline-block; }
.cp-pill input { display: none; }
.cp-pill span { display: inline-block; padding: 10px 20px; border: 1px solid #CCC; border-radius: 50px; font-size: 0.9rem; font-weight: 500; color: var(--black); transition: all 0.2s ease; user-select: none; }
.cp-pill input:checked + span { background-color: var(--black); color: var(--white); border-color: var(--black); }
.cp-submit-btn { background-color: var(--black); color: var(--white); border: none; padding: 16px 50px; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; margin-top: 20px; transition: background-color 0.3s; }
.cp-submit-btn:hover { background-color: #333; }
.cp-right { background-color: var(--black); display: flex; flex-direction: column; }
.cp-img-container { width: 100%; height: 100vh; position: relative; }
.cp-img-container img { width: 100%; height: 100%; object-fit: cover; }
.cp-caption { position: absolute; bottom: 40px; right: 40px; color: var(--white); font-size: 0.9rem; font-weight: 600; text-shadow: 0px 2px 4px rgba(0,0,0,0.5); }
@media (max-width: 1024px) { .cp-wrapper { grid-template-columns: 1fr; } .cp-left { padding: 120px 5% 60px 5%; } .cp-img-container { height: 60vh; } .cp-caption { bottom: 20px; right: 20px; } }

.blog-hero { padding: 120px 0 80px 0; background-color: var(--white); border-bottom: 1px solid #EAEAEA; }
.blog-feed-section { padding: 100px 0; background-color: #FAFAFA; }
.featured-post { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; background-color: var(--white); border-radius: 20px; padding: 30px; margin-bottom: 80px; border: 1px solid #EAEAEA; }
.featured-img-wrapper { width: 100%; height: 450px; border-radius: 12px; overflow: hidden; }
.featured-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.featured-post:hover .featured-img-wrapper img { transform: scale(1.05); }
.featured-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 2.5vw, 2.5rem); font-weight: 800; line-height: 1.2; margin: 20px 0; color: var(--black); }
.featured-content p { font-size: 1.1rem; line-height: 1.6; color: #555; margin-bottom: 30px; }
.post-meta { font-size: 0.9rem; font-weight: 500; color: #888; margin-bottom: 30px; }
.read-more-btn { font-weight: 600; color: var(--black); text-decoration: none; border-bottom: 2px solid var(--black); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.read-more-btn:hover { color: var(--orange); border-color: var(--orange); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); gap: 40px; margin-bottom: 60px; }
.blog-card { text-decoration: none; color: inherit; background-color: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid #EAEAEA; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.blog-img-wrapper { width: 100%; height: 250px; overflow: hidden; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.05); }
.blog-card-content { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-content h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; line-height: 1.3; margin: 15px 0 20px 0; flex-grow: 1; }
.load-more-wrapper { display: flex; justify-content: center; margin-top: 60px; }
@media (max-width: 900px) { .featured-post { grid-template-columns: 1fr; padding: 20px; gap: 30px; } .featured-img-wrapper { height: 300px; } .blog-grid { grid-template-columns: 1fr; } }