/* Core Layout Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #1a382b;
    color: #fff;
    overflow-x: hidden;
    cursor: none; /* native cursor hidden in favor of the custom red-dot cursor */
}

/* --- Themed scrollbar (replaces the plain default gray thumb) --- */
html {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #b79a72 rgba(255, 255, 255, 0.05); /* Firefox: thumb / track */
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e6ccb2 0%, #b79a72 100%);
    border-radius: 20px;
    border: 2px solid #1a382b;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0dcc5 0%, #cbab82 100%);
    background-clip: padding-box;
}

a, button, input, textarea {
    cursor: none;
}

/* --- Floating Pill-Shaped Navbar --- */
header {
    position: fixed;
    top: 24px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 800px; 
    background-color: rgba(26, 56, 43, 0.4); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12); 
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative;
    padding: 10px 24px; 
    height: 60px; 
}

.logo {
    position: absolute; 
    left: 24px;
    font-size: 20px;
    font-weight: 700;
    color: #e6ccb2;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px; 
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e6ccb2;
}

/* --- Scroll-Driven Frame Sequence Background --- */
#scroll-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    display: block;
    background-color: #1a382b; /* fallback color while frames load */
}

/* Subtle dark vignette over the frames so text stays readable.
   This does NOT touch the green in the frame images themselves —
   it's a separate translucent layer. Remove this rule if you don't want it. */
#scroll-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 20, 15, 0.25) 0%, rgba(10, 20, 15, 0.45) 100%);
}

/* Base Wrapper: background now comes from the fixed canvas behind it */
.main-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Section Common Title Structure */
.section-title {
    text-align: center;
    margin-bottom: 0; 
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 42px;
    color: #f7ede2;
    margin-bottom: 0;
}

.section-title p {
    color: #94a3b8;
    font-size: 16px;
    margin-top: 8px;
}

/* --- Home (Hero) Section --- */
.hero-section {
    padding-top: 173px; 
    padding-bottom: 140px; 
    min-height: 110vh; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 40px;
}

.hero-center-empty {
    flex: 1; 
}

/* Deep Elongated Glass Panels Styles */
.hero-glass-card {
    width: 340px;
    height: 680px; 
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    
    /* Frosted Glass Blur Effect */
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    /* Transparent Light Border */
    border: 1px solid rgba(255, 255, 255, 0.08); 
    
    /* Subtle Shadow for Depth */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Left Card setup for 3D dynamics */
.left-hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; 
    transform-style: preserve-3d;
    cursor: pointer;
}

.landscape-3d-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg) translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
    font-size: 74px;
    font-weight: 950;
    letter-spacing: 5px;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Strict Color Configuration */
.red-text {
    color: #e63946; 
    text-shadow: 
        1px 1px 0px #b81d24,
        2px 2px 0px #941319,
        3px 3px 0px #70090e,
        4px 4px 12px rgba(230, 57, 70, 0.4); 
}

.white-text {
    color: #ffffff; 
    text-shadow: 
        1px 1px 0px #d4d4d8,
        2px 2px 0px #a1a1aa,
        3px 3px 0px #71717a,
        4px 4px 12px rgba(255, 255, 255, 0.3); 
}

/* --- Content Elements Inside Glass Cards --- */
.card-content {
    padding: 50px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    position: relative;
    z-index: 2;
}

.card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e6ccb2;
    margin-bottom: 18px;
    font-weight: 600;
}

.card-content h2 {
    font-size: 30px;
    color: #f7ede2;
    margin-bottom: 22px;
    line-height: 1.3;
}

.card-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Services Bullet List Layout */
.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.services-list li {
    font-size: 15px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-list li span {
    font-size: 18px;
}

/* Action Buttons for Cards */
.hero-btn {
    align-self: flex-start;
    text-decoration: none;
    color: #e6ccb2;
    border: 1px solid rgba(230, 204, 178, 0.35);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #e6ccb2;
    color: #1a382b;
    box-shadow: 0 8px 24px rgba(230, 204, 178, 0.25);
    transform: translateY(-2px);
}

/* --- About Section Glass Plate Layout --- */
.about-section {
    padding: 160px 40px 0px 40px; 
    max-width: 1200px;
    margin: 0 auto;
}

.about-bg-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-top: 1.5px solid rgba(255, 255, 255, 0.3); 
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px; 
    padding: 90px 40px;
    margin-bottom: 80px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* About content layout: portrait + bio */
.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.about-portrait {
    flex-shrink: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(230, 204, 178, 0.15), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(230, 204, 178, 0.25);
    box-shadow: inset 0 0 40px rgba(230, 204, 178, 0.08), 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-portrait::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, rgba(230, 204, 178, 0.5), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e6ccb2;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.glass-spacer-box {
    max-width: 1200px;
    height: auto; 
    min-height: 380px;
    margin: 100px auto;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    
    /* Frosted Transparent Glass Effect */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 0 30px rgba(255, 255, 255, 0.03),
        0 30px 60px rgba(0, 0, 0, 0.2);
    padding: 70px 40px;
}

.glass-spacer-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 35%;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    filter: blur(1px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.glass-spacer-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* --- Portfolio / Work Showcase --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 30px 26px;
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #e6ccb2, transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(230, 204, 178, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover::before {
    opacity: 1;
}

.portfolio-icon {
    font-size: 30px;
    margin-bottom: 18px;
    display: inline-block;
}

.portfolio-card h3 {
    font-size: 19px;
    color: #f7ede2;
    margin-bottom: 12px;
}

.portfolio-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

.portfolio-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #e6ccb2;
    font-weight: 600;
}

/* --- Contact Section --- */
.contact-section {
    padding: 120px 40px 120px 40px; 
    max-width: 1200px; 
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-top: 1.5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    
    border-radius: 40px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    max-width: 980px;
    margin: 50px auto 0 auto;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-profile-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.25);
}

.profile-pic-ring {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(from 180deg, #e6ccb2, #b79a72, #e6ccb2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1e3f2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 800;
    color: #e6ccb2;
}

.profile-status {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4ade80;
    border: 3px solid #1e3f2f;
}

.profile-name {
    font-size: 21px;
    color: #f7ede2;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 13px;
    color: #e6ccb2;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

.profile-loc {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.profile-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 26px 0;
}

.social-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-icon-link:hover {
    background: rgba(230, 204, 178, 0.1);
    border-color: rgba(230, 204, 178, 0.4);
    color: #e6ccb2;
    transform: translateX(4px);
}

.organic-formcontact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.organic-formcontact input, .organic-formcontact textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.organic-formcontact input::placeholder,
.organic-formcontact textarea::placeholder {
    color: #000;
    opacity: 1;
}

.organic-formcontact input:focus, .organic-formcontact textarea:focus {
    border-color: #e6ccb2;
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    background: linear-gradient(135deg, #e6ccb2 0%, #b79a72 100%);
    color: #3d2612;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-status-msg {
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    margin-top: -4px;
}

.form-status-msg.success {
    color: #4ade80;
}

.form-status-msg.error {
    color: #f87171;
}

/* --- Navbar Coffee Icon Button --- */
.nav-coffee-btn {
    position: absolute;
    right: 24px;
    background: rgba(230, 204, 178, 0.1);
    border: 1px solid rgba(230, 204, 178, 0.3);
    color: #e6ccb2;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s ease;
}

.nav-coffee-btn svg {
    width: 19px;
    height: 19px;
}

.nav-coffee-btn:hover {
    background: #e6ccb2;
    color: #1a382b;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(230, 204, 178, 0.3);
}

/* --- Modal Overlay (Subscribe / Buy Me a Coffee) --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 15, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(160deg, rgba(43, 92, 67, 0.9) 0%, rgba(20, 36, 28, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 18px;
    line-height: 1;
    cursor: none;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.modal-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 14px;
}

.modal-box h3 {
    font-size: 24px;
    color: #f7ede2;
    margin-bottom: 12px;
}

.modal-box p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 26px;
}

.organic-formsub {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.organic-formsub input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.organic-formsub input:focus {
    border-color: #e6ccb2;
    background: rgba(255, 255, 255, 0.1);
}

.btn-sub {
    background: linear-gradient(135deg, #e6ccb2 0%, #b79a72 100%);
    color: #3d2612;
    border: none;
    border-radius: 14px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
}

.btn-sub:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(230, 204, 178, 0.3);
}

.btn-coffee {
    display: inline-block;
    background: linear-gradient(135deg, #e6ccb2 0%, #b79a72 100%);
    color: #3d2612;
    text-decoration: none;
    border-radius: 14px;
    padding: 16px 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-coffee:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(230, 204, 178, 0.3);
}

/* --- Subscription Plans Section --- */
.plans-section {
    padding: 60px 40px 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.plan-card.featured {
    background: linear-gradient(160deg, rgba(230, 204, 178, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid rgba(230, 204, 178, 0.4);
    transform: scale(1.04);
    isolation: isolate;
}

.plan-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.plan-card.featured::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        #38bdf8 8%,
        #e6ccb2 16%,
        transparent 28%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: proBorderSpin 3.2s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes proBorderSpin {
    to {
        transform: rotate(360deg);
    }
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e6ccb2 0%, #b79a72 100%);
    color: #3d2612;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    z-index: 3;
}

.plan-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e6ccb2;
    margin-bottom: 18px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #f7ede2;
    margin-bottom: 26px;
}

.plan-price span {
    font-size: 15px;
    font-weight: 500;
    color: #94a3b8;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
    text-align: left;
}

.plan-features li {
    font-size: 14px;
    color: #cbd5e1;
}

.btn-plan {
    width: 100%;
    background: transparent;
    color: #e6ccb2;
    border: 1px solid rgba(230, 204, 178, 0.4);
    border-radius: 14px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: linear-gradient(135deg, #e6ccb2 0%, #b79a72 100%);
    color: #3d2612;
    box-shadow: 0 10px 24px rgba(230, 204, 178, 0.3);
}

/* --- Payment Methods (inside Payment Modal) --- */
.payment-modal-box {
    max-width: 440px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 16px 18px;
    color: #f7ede2;
    font-size: 15px;
    font-weight: 500;
    cursor: none;
    transition: all 0.3s ease;
    text-align: left;
}

.payment-method-icon {
    font-size: 20px;
}

.payment-method-btn:hover {
    background: rgba(230, 204, 178, 0.1);
    border-color: rgba(230, 204, 178, 0.4);
    transform: translateX(4px);
}

.payment-detail {
    text-align: left;
}

.payment-back {
    background: none;
    border: none;
    color: #e6ccb2;
    font-size: 14px;
    font-weight: 600;
    cursor: none;
    margin-bottom: 18px;
    padding: 0;
}

.payment-detail-content p {
    margin-bottom: 8px;
}

#payment-detail-content .payment-value {
    font-size: 16px;
    font-weight: 700;
    color: #e6ccb2;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 10px 14px;
    display: inline-block;
}

#payment-detail-content .payment-note {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 10px;
}

.btn-verify-payment {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 22px;
    background: linear-gradient(135deg, #2fa9e0 0%, #1c7fb0 100%);
    color: #fff;
    border-radius: 14px;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-verify-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(47, 169, 224, 0.35);
}

/* Minimal Footer Layout */
.minimal-footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 14px;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-top: 8px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e63946;
    text-decoration: underline;
}

/* =======================================================
   Privacy Policy Page
   ======================================================= */
.privacy-page {
    max-width: 900px;
    margin: 160px auto 100px;
    padding: 0 24px;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 45px 40px;
    margin-bottom: 40px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.03), 0 30px 60px rgba(0, 0, 0, 0.2);
}

.privacy-card h3 {
    font-size: 22px;
    color: #e6ccb2;
    margin-bottom: 18px;
}

.privacy-card > p {
    font-size: 15px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.privacy-card > p:last-child {
    margin-bottom: 0;
}

.privacy-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 22px;
}

.privacy-item summary {
    cursor: none;
    font-size: 15.5px;
    font-weight: 600;
    color: #f7ede2;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-item summary::-webkit-details-marker {
    display: none;
}

.privacy-item summary::after {
    content: "+";
    font-size: 20px;
    color: #b79a72;
    transition: transform 0.3s ease;
}

.privacy-item[open] summary::after {
    content: "\2212";
}

.privacy-item p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-top: 12px;
}

.privacy-item p a {
    color: #e63946;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-item p a:hover {
    color: #ff5a67;
}

.privacy-settings-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.privacy-settings-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.settings-icon {
    font-size: 22px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 204, 178, 0.08);
    border: 1px solid rgba(230, 204, 178, 0.2);
    border-radius: 12px;
}

.privacy-settings-list strong {
    display: block;
    font-size: 15px;
    color: #f7ede2;
    margin-bottom: 4px;
}

.privacy-settings-list p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
}

.privacy-updated {
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

.privacy-updated a {
    color: #b79a72;
}

@media (max-width: 768px) {
    .privacy-page {
        margin: 130px auto 70px;
    }

    .privacy-card {
        padding: 32px 24px;
    }
}

/* =======================================================
   NEW: Custom red-dot cursor
   ======================================================= */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e63946;
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.7), 0 0 2px rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    /* Position updates are instant (no transition on top/left, set via JS),
       only the visual feedback (scale/opacity) eases smoothly */
    transition: width 0.18s ease, height 0.18s ease, background-color 0.18s ease, opacity 0.2s ease;
    opacity: 0;
}

.custom-cursor.visible {
    opacity: 1;
}

/* Grows and lightens over anything clickable, for clear affordance */
.custom-cursor.hovering {
    width: 34px;
    height: 34px;
    background: rgba(230, 57, 70, 0.25);
    border: 1.5px solid #e63946;
}

/* Shrinks slightly on click for tactile feedback */
.custom-cursor.clicking {
    width: 3px;
    height: 3px;
}

@media (hover: none) and (pointer: coarse) {
    /* Touch devices: keep the real cursor system out of the way entirely */
    body, a, button, input, textarea { cursor: auto; }
    .custom-cursor { display: none; }
}

/* =======================================================
   NEW: Custom right-click context menu
   ======================================================= */
.custom-context-menu {
    position: fixed;
    top: 0;
    left: 0;
    list-style: none;
    min-width: 200px;
    background: linear-gradient(160deg, rgba(30, 63, 47, 0.95) 0%, rgba(16, 32, 24, 0.98) 100%);
    border: 1px solid rgba(230, 204, 178, 0.25);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) translateY(-6px);
    transform-origin: top left;
    transition: opacity 0.18s ease, transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.2), visibility 0.18s;
}

.custom-context-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.custom-context-menu li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #f7ede2;
    cursor: none;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
    /* Each item animates in slightly staggered when the menu opens */
    opacity: 0;
    transform: translateX(-6px);
    animation: contextItemIn 0.28s ease forwards;
}

.custom-context-menu.active li:nth-child(1) { animation-delay: 0.02s; }
.custom-context-menu.active li:nth-child(2) { animation-delay: 0.05s; }
.custom-context-menu.active li:nth-child(3) { animation-delay: 0.08s; }
.custom-context-menu.active li:nth-child(4) { animation-delay: 0.11s; }
.custom-context-menu.active li:nth-child(5) { animation-delay: 0.14s; }
.custom-context-menu.active li:nth-child(6) { animation-delay: 0.17s; }

@keyframes contextItemIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.custom-context-menu li:hover {
    background: rgba(230, 204, 178, 0.12);
    color: #e6ccb2;
    transform: translateX(4px);
}

.custom-context-menu li span {
    font-size: 15px;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 968px) {
    header { width: 95%; top: 10px; }
    .navbar { justify-content: space-between; }
    .logo { position: static; }
    .nav-links { display: none; } 
    .hero-section { padding-top: 100px; min-height: auto; }
    .hero-container { padding: 40px 20px; gap: 20px; }
    .hero-glass-card { width: 48%; height: auto; }
    .landscape-3d-name { display: none; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .hero-container { flex-direction: column; justify-content: center; gap: 30px; }
    .hero-glass-card { width: 100%; height: auto; }
    .hero-center-empty { display: none; }
    .about-bg-card, .contact-section, .glass-spacer-box {
        border-radius: 28px;
        padding: 40px 20px;
    }
    .glass-spacer-box {
        height: auto;
        margin: 50px auto;
    }
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .about-stats {
        justify-content: center;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .plans-grid {
        grid-template-columns: 1fr;
    }
    .plan-card.featured {
        transform: none;
    }
    .plan-card.featured:hover {
        transform: translateY(-6px);
    }
}

/* =======================================================
   Cookie Consent Banner
   ======================================================= */
.cookie-consent-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 140%);
    width: 92%;
    max-width: 780px;
    z-index: 3000;
    background: linear-gradient(160deg, rgba(20, 36, 28, 0.85) 0%, rgba(10, 18, 14, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.08);
    padding: 22px 26px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-consent-banner.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-consent-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.cookie-consent-text {
    flex: 1;
    min-width: 0;
}

.cookie-consent-text h4 {
    font-size: 15px;
    color: #f7ede2;
    margin-bottom: 4px;
}

.cookie-consent-text p {
    font-size: 13px;
    line-height: 1.55;
    color: #cbd5e1;
    margin: 0;
}

.cookie-consent-text a {
    color: #e63946;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent-text a:hover {
    color: #ff5a67;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 12px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.cookie-btn-accept {
    background: #e63946;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.35);
}

.cookie-btn-accept:hover {
    background: #ff4d5a;
    box-shadow: 0 10px 24px rgba(230, 57, 70, 0.5);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-consent-banner {
        bottom: 12px;
        padding: 18px 18px;
    }
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 14px;
    }
    .cookie-consent-icon {
        display: none;
    }
    .cookie-consent-actions {
        justify-content: center;
    }
}