/* --- PREMIER HERO STYLING --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    /* Increased padding for better breathing room */
    position: relative;
    overflow: hidden;
    background: #000;
}


/* Background Layers */

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother fade */
    transform: scale(1.1);
    /* Subtle zoom effect for a cinematic feel */
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
    /* Zooms out slightly when active */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 2;
}


/* Content Layout */

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tagline {
    color: #ff5722;
    /* Primary Orange */
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    display: block;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6.5rem);
    /* Responsive typography */
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin-bottom: 3rem;
}


/* --- PREMIER BUTTON GROUP --- */

.action-group {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 4rem;
}


/* View Portfolio Button */

.view-portfolio {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 8px 28px 8px 8px;
    /* Balanced padding */
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
}

.view-portfolio:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.orange-icon {
    width: 44px;
    /* Slightly larger */
    height: 44px;
    background: #ff5722;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}


/* Book Session (Ghost) Button */

.book-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 18px 35px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
}

.book-ghost:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}


/* Stats Styling */

.stats-container {
    display: flex;
    gap: 40px;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.stat-card h3 {
    color: #ff5722;
    font-size: 2.8rem;
    margin-bottom: 4px;
    font-family: 'Playfair Display', serif;
}

.stat-card p {
    font-size: 1.65rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* UI Details */

.gps-spinner {
    animation: rotateGPS 4s linear infinite;
}

@keyframes rotateGPS {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dot.active {
    background: #ff5722;
    width: 30px;
    border-radius: 10px;
}


/*Hero Mobile*/


/* --- PREMIER MOBILE UPDATE --- */


/* =========================
   HERO - FIXED MOBILE LAYOUT
   (prevents image cropping + layout break)
========================= */

@media (max-width: 1024px) {
    .hero {
        padding: 0 6%;
    }
    .main-title {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
}


/* =========================
   TABLET / LARGE MOBILE FIX
========================= */

@media (max-width: 768px) {
    /* IMPORTANT FIX: prevent background crop feel */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 20px 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    /* make background behave better on mobile */
    .hero-bg,
    .hero-bg.active {
        background-position: center center;
        background-size: cover;
        transform: none !important;
        /* removes zoom crop effect */
    }
    /* overlay lighter so text is readable */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.65);
    }
    /* content structure fix */
    .hero-content {
        max-width: 100%;
        padding: 0;
    }
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .main-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }
    .description {
        font-size: 0.95rem;
        max-width: 100%;
        margin: 15px auto 30px;
        color: rgba(255, 255, 255, 0.75);
    }
    /* BUTTON FIX */
    .action-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .view-portfolio,
    .book-ghost {
        width: 100%;
        justify-content: center;
    }
    /* STATS FIX */
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
        margin-top: 30px;
    }
    .stat-card h3 {
        font-size: 2rem;
    }
    .stat-card p {
        font-size: 0.95rem;
    }
}


/* =========================
   SMALL PHONES (REAL FIX ZONE)
========================= */

@media (max-width: 480px) {
    .hero {
        padding: 100px 18px 60px;
    }
    .main-title {
        font-size: 2rem;
    }
    .tagline {
        font-size: 0.9rem;
    }
    .description {
        font-size: 0.88rem;
        line-height: 1.6;
    }
    .view-portfolio,
    .book-ghost {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    .orange-icon {
        width: 34px;
        height: 34px;
    }
    .stat-card h3 {
        font-size: 1.7rem;
    }
    .stat-card p {
        font-size: 0.85rem;
    }
}


/*Services section*/

.services-section {
    padding: 100px 8%;
    background: #0a0a0a;
    color: #fff;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1;
}

.section-title span {
    color: var(--primary-orange);
}

.section-intro {
    max-width: 450px;
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}


/* Grid Logic */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns like Rocket AI */
    gap: 25px;
}

.wide-card {
    grid-column: span 2;
    /* Spans across both columns */
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(248, 183, 53, 0.05);
    border: 1px solid rgba(248, 183, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-tag {
    background: rgba(248, 183, 53, 0.1);
    color: var(--primary-orange);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.arrow-icon {
    opacity: 0.3;
    transition: 0.3s;
}


/* Hover States */

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.service-card:hover .service-icon {
    background: var(--primary-orange);
    color: #000;
}

.service-card:hover .arrow-icon {
    opacity: 1;
    transform: translate(3px, -3px);
}


/* Pricing CTA */

.pricing-cta {
    margin-top: 60px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 50px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.get-quote {
    background: var(--primary-orange);
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}


/* --- SERVICES PREMIER MOBILE UPDATE --- */


/* =========================
   SERVICES SECTION - MOBILE FIX
========================= */


/* TABLET FIX */

@media (max-width: 1024px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .section-title {
        font-size: 3rem;
    }
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================
   MOBILE / SMALL TABLETS
========================= */

@media (max-width: 768px) {
    .services-section {
        padding: 80px 20px;
    }
    /* HEADER STACK */
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }
    .section-intro {
        max-width: 100%;
        font-size: 0.95rem;
    }
    /* GRID → SINGLE COLUMN */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    /* REMOVE wide-card span issues */
    .wide-card {
        grid-column: auto;
    }
    /* CARD COMFORT */
    .service-card {
        padding: 25px;
        border-radius: 18px;
    }
    .service-card h3 {
        font-size: 1.2rem;
    }
    .service-card p {
        font-size: 0.9rem;
    }
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    /* CTA STACK */
    .pricing-cta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
        border-radius: 20px;
    }
    .get-quote {
        width: 100%;
        text-align: center;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {
    .services-section {
        padding: 70px 18px;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-intro {
        font-size: 0.88rem;
    }
    .service-card {
        padding: 20px;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    .service-card p {
        font-size: 0.85rem;
    }
    .service-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    .pricing-cta {
        padding: 20px 15px;
    }
}


/*Portfoillo section*/

.portfolio-section {
    padding: 80px 8%;
    background: var(--bg-color);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}


/* Filter Styling */

.portfolio-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #888;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-orange);
    color: #000;
    border-color: var(--primary-orange);
}


/* Masonry Grid */

.portfolio-grid {
    columns: 3;
    /* 3 columns on desktop */
    column-gap: 20px;
}

.portfolio-item {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    break-inside: avoid;
    /* Prevents image splitting across columns */
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.item-overlay span {
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .item-overlay {
    opacity: 1;
}


/* Load More Button */

.portfolio-footer {
    text-align: center;
    margin-top: 50px;
}

.load-more {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.load-more:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}


/*Profolilo mobile */


/* =========================
   PORTFOLIO - MOBILE FIX
========================= */


/* TABLETS */

@media (max-width: 1024px) {
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .portfolio-grid {
        columns: 2;
    }
}


/* =========================
   MOBILE / SMALL TABLETS
========================= */

@media (max-width: 768px) {
    .portfolio-section {
        padding: 70px 20px;
    }
    /* HEADER STACK */
    .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    /* FILTER BUTTONS WRAP */
    .portfolio-filters {
        flex-wrap: wrap;
        gap: 8px;
    }
    .filter-btn {
        font-size: 0.8rem;
        padding: 7px 16px;
    }
    /* GRID → 2 COLUMNS (safe mobile layout) */
    .portfolio-grid {
        columns: 2;
        column-gap: 12px;
    }
    .portfolio-item {
        margin-bottom: 12px;
    }
    .item-overlay span {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    /* REMOVE HEAVY HOVER EFFECTS ON TOUCH */
    .portfolio-item:hover img {
        transform: none;
    }
}


/* =========================
   SMALL PHONES (BEST FIX ZONE)
========================= */

@media (max-width: 480px) {
    .portfolio-section {
        padding: 60px 15px;
    }
    /* HEADER */
    .portfolio-header h2 {
        font-size: 1.8rem;
    }
    /* FILTER → SCROLLABLE ROW (VERY IMPORTANT UX FIX) */
    .portfolio-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    /* GRID → 1 COLUMN (FULL QUALITY IMAGES) */
    .portfolio-grid {
        columns: 1;
    }
    .portfolio-item {
        margin-bottom: 15px;
    }
    .item-overlay span {
        font-size: 0.7rem;
    }
    /* LOAD MORE */
    .load-more {
        width: 100%;
        padding: 14px;
        font-size: 0.9rem;
    }
}


/*Trusted */

.testimonials-section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Header Styling */

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.badge {
    color: var(--accent-orange);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
}

h1 {
    font-size: 3.5rem;
    margin-top: 10px;
    line-height: 1.1;
}

.highlight {
    color: var(--text-gray);
    /* Faded look from the video */
}

.header-right {
    max-width: 400px;
}

.stats-grid {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin: 0;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}


/* Grid Styling */

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.quote-icon {
    color: var(--accent-orange);
    font-size: 40px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
}

.user-info h4 {
    margin: 0;
    font-size: 1rem;
}

.user-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}


/* Mobile Responsive */


/* =========================
   TESTIMONIALS - MOBILE FIX
   ========================= */

@media (max-width: 1024px) {
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    h1 {
        font-size: 2.8rem;
    }
    .header-right {
        max-width: 100%;
    }
    .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }
}


/* TABLETS */

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    .testimonial-header {
        margin-bottom: 40px;
    }
    h1 {
        font-size: 2.3rem;
    }
    .stats-grid {
        justify-content: space-between;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 30px;
    }
    .quote-icon {
        font-size: 32px;
    }
    .testimonial-text {
        font-size: 1rem;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 15px;
    }
    .testimonial-header {
        gap: 20px;
    }
    h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    .stats-grid {
        flex-direction: column;
        gap: 15px;
    }
    .stat-item h3 {
        font-size: 1.3rem;
    }
    .stat-item p {
        font-size: 0.8rem;
    }
    .testimonial-card {
        padding: 22px;
        border-radius: 10px;
    }
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .user-info {
        gap: 10px;
    }
    .avatar {
        width: 42px;
        height: 42px;
    }
    .user-info h4 {
        font-size: 0.9rem;
    }
    .user-info p {
        font-size: 0.75rem;
    }
}


/* --- PORTFOLIO MOBILE STYLE --- */

@media screen and (max-width: 768px) {
    .portfolio-section {
        padding: 60px 5%;
        /* Tighten padding for mobile */
    }
    .portfolio-header {
        flex-direction: column;
        /* Stack Title and Filters */
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 20px;
    }
    /* Make filters scrollable horizontally instead of wrapping */
    .portfolio-filters {
        width: 100vw;
        margin-left: -5%;
        /* Pull back to screen edge */
        padding: 0 5% 10px 5%;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        /* Hide scrollbar for clean look */
        display: flex;
        -webkit-overflow-scrolling: touch;
    }
    .portfolio-filters::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for Chrome/Safari */
    }
    .filter-btn {
        flex: 0 0 auto;
        /* Prevent buttons from shrinking */
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    /* Update Masonry to 2 Columns for better visibility */
    .portfolio-grid {
        columns: 2;
        column-gap: 15px;
    }
    .portfolio-item {
        margin-bottom: 15px;
        border-radius: 12px;
    }
    /* Keep overlay hidden on mobile or make it tap-friendly */
    .item-overlay {
        display: none;
        /* Usually better to hide hover states on touch devices */
    }
    .load-more {
        width: 100%;
        /* Full width button for easy tapping */
        padding: 15px;
        font-size: 0.9rem;
    }
}


/* Extra small devices (Phones in portrait) */

@media screen and (max-width: 480px) {
    .portfolio-grid {
        columns: 1;
        /* Single column for very small screens if needed */
    }
}


/*Blog section*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section {
    padding: 100px 0;
}


/* Header */

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.badge {
    color: var(--accent-orange);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin: 10px 0 0;
}

.view-all {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
    padding-bottom: 5px;
}

.view-all:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}


/* Grid */

.blog-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
}


/* Featured Card */

.featured-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 550px;
    cursor: pointer;
}

.card-image-wrap,
.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-tag {
    background: rgba(255, 77, 0, 0.15);
    color: var(--accent-orange);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 20px;
}

.card-content h3 {
    font-size: 2rem;
    margin: 10px 0;
    line-height: 1.2;
}

.card-content p {
    color: #bbbbbb;
    font-size: 1rem;
    max-width: 90%;
    line-height: 1.6;
}

.read-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    display: block;
}


/* Side Cards */

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
    align-items: center;
}

.side-card:hover {
    border-color: #333;
    background: #181818;
    transform: translateX(5px);
}

.side-img-wrap {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.side-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-small {
    color: var(--accent-orange);
    font-size: 10px;
    font-weight: 700;
}

.side-content h4 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
}

.meta,
.meta-small {
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* Responsive */


/* =========================
   BLOG SECTION - MOBILE FIX
   ========================= */


/* TABLETS */

@media (max-width: 1024px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .serif-title {
        font-size: 2.8rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .featured-card {
        height: 450px;
    }
    .side-card {
        align-items: flex-start;
    }
}


/* MOBILE */

@media (max-width: 768px) {
    .blog-section {
        padding: 70px 0;
    }
    .serif-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .featured-card {
        height: 380px;
    }
    .card-overlay {
        padding: 25px;
    }
    .card-content h3 {
        font-size: 1.5rem;
    }
    .card-content p {
        font-size: 0.95rem;
        max-width: 100%;
    }
    .blog-list {
        gap: 15px;
    }
    .side-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    .side-img-wrap {
        width: 100%;
        height: 180px;
    }
    .side-content h4 {
        font-size: 1.05rem;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {
    .blog-section {
        padding: 60px 0;
    }
    .serif-title {
        font-size: 1.9rem;
    }
    .featured-card {
        height: 320px;
        border-radius: 14px;
    }
    .card-overlay {
        padding: 18px;
    }
    .card-content h3 {
        font-size: 1.3rem;
    }
    .card-content p {
        font-size: 0.9rem;
    }
    .side-card {
        padding: 12px;
        border-radius: 12px;
    }
    .side-img-wrap {
        height: 160px;
    }
    .meta,
    .meta-small {
        font-size: 0.75rem;
    }
}


/*Form section*/

.contact-section {
    padding: 120px 8%;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    font-family: 'Playfair Display', serif;
    letter-spacing: -2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.accent-text {
    color: #ff5722;
    font-style: italic;
    font-weight: 400;
}

.info-list {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(255, 87, 34, 0.1);
    border: 1px solid rgba(255, 87, 34, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5722;
}

.whatsapp-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 45px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    border-radius: 100px;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: none;
}

.submit-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2);
}

.submit-btn.secondary:hover {
    background: #fff;
    color: #000;
}


/* Responsive */


/* =========================
   CONTACT SECTION - MOBILE FIX
   ========================= */


/* TABLETS */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .serif-title {
        font-size: 3rem;
    }
    .bg-watermark {
        font-size: 18vw;
    }
    .whatsapp-box {
        padding: 50px 35px;
    }
}


/* MOBILE */

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 20px;
    }
    .contact-grid {
        gap: 40px;
    }
    .serif-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }
    .bg-watermark {
        font-size: 22vw;
        opacity: 0.02;
    }
    .info-list {
        gap: 20px;
    }
    .info-item {
        align-items: flex-start;
    }
    .icon-box {
        width: 48px;
        height: 48px;
    }
    .whatsapp-box {
        padding: 40px 25px;
        border-radius: 20px;
    }
    .submit-btn {
        padding: 16px;
        font-size: 0.95rem;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 15px;
    }
    .serif-title {
        font-size: 1.9rem;
    }
    .bg-watermark {
        font-size: 28vw;
    }
    .info-item {
        gap: 15px;
    }
    .icon-box {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    .whatsapp-box {
        padding: 30px 18px;
    }
    .submit-btn {
        padding: 14px;
        font-size: 0.9rem;
        border-radius: 80px;
    }
    .submit-btn:hover {
        transform: none;
        /* prevents weird mobile hover jump */
    }
}


/*Google review*/

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #FF6B00;
    /* Ecca Orange */
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.google-review-btn i {
    font-size: 1.1rem;
}

.google-review-btn span {
    transition: transform 0.3s ease;
}

.google-review-btn:hover {
    background-color: transparent;
    border-color: #FF6B00;
    color: #FF6B00;
    transform: translateY(-2px);
}

.google-review-btn:hover span {
    transform: translateX(5px);
}


/* Ensure the header-right handles the spacing */

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/**/


/* =========================
   GOOGLE REVIEW BUTTON - MOBILE FIX
   ========================= */


/* TABLETS */

@media (max-width: 768px) {
    .google-review-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
        gap: 10px;
        margin-top: 20px;
    }
    .google-review-btn i {
        font-size: 1rem;
    }
}


/* SMALL PHONES */

@media (max-width: 480px) {
    .google-review-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 0.85rem;
        border-radius: 40px;
    }
    .google-review-btn:hover {
        transform: none;
        /* avoids jumpy mobile hover effect */
    }
    .google-review-btn:hover span {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-right {
        align-items: center;
        /* Center on mobile */
    }
}