:root {
    --bg-color: #000000; 
    --text-color: #fff; 
    --accent-color: #b8870b;
    --hover-color: #ff4500; 
    --border-color: #333;  
    --secondary-text-color: #bbb; 
    --box-shadow: 0 8px 16px rgba(184, 135, 11, 0.15);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gradient-primary: linear-gradient(135deg, rgba(184, 135, 11, 0.1) 0%, rgba(255, 69, 0, 0.05) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.posh-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
                radial-gradient(circle at 30% 20%, rgba(184, 135, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(184, 135, 11, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.floating-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2s; }
.floating-icon:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 50%; left: 5%; animation-delay: 4s; }
.floating-icon:nth-child(6) { top: 60%; right: 5%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 135, 11, 0.3);
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: "Merriweather", serif;
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInUp 1s ease-out 0.3s both;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--secondary-text-color);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--secondary-text-color);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: slideInUp 1s ease-out 0.9s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 1.2s both;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 135, 11, 0.3);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    transform: translateY(-3px);
}

/* Services Overview */
.services-overview {
    padding: 100px 20px;
    background: var(--gradient-primary);
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: rgba(184, 135, 11, 0.1);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 135, 11, 0.3);
}

.section-title {
    font-family: "Merriweather", serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(184, 135, 11, 0.1);
    cursor: pointer;
    text-align: left;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 135, 11, 0.1), transparent);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(184, 135, 11, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(184, 135, 11, 0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
}

.service-card:hover .service-icon::after {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: "Merriweather", serif;
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: var(--secondary-text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--secondary-text-color);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Detailed Services Section */
.detailed-services {
    padding: 100px 20px;
    background-color: var(--bg-color);
}

.detailed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.service-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-detail:last-child {
    margin-bottom: 0;
}

.detail-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.service-detail:nth-child(even) .detail-content {
    flex-direction: row-reverse;
}

.detail-visual {
    flex: 0 0 auto;
    position: relative;
}

.detail-icon-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-color);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 135, 11, 0.2);
}

.detail-icon-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(184, 135, 11, 0.1) 50%, transparent 70%);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.detail-text {
    flex: 1;
}

.detail-title {
    font-family: "Merriweather", serif;
    font-size: 2.2rem;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.detail-description {
    font-size: 1.05rem;
    color: var(--secondary-text-color);
    line-height: 1.8;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.detail-item {
    background: rgba(20, 20, 20, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(184, 135, 11, 0.1);
    transition: var(--transition-smooth);
}

.detail-item:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(184, 135, 11, 0.3);
    transform: translateY(-5px);
}

.detail-item-title {
    font-family: "Merriweather", serif;
    font-size: 1.15rem;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.detail-item-text {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Statistics Section */
.stats-section {
    padding: 80px 20px;
    background: var(--gradient-primary);
    text-align: center;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    position: relative;
    padding: 20px;
}

.stat-number {
    font-family: "Merriweather", serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
    position: relative;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%),
                radial-gradient(circle at center, rgba(184, 135, 11, 0.1) 0%, transparent 70%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-family: "Merriweather", serif;
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .detail-content {
        gap: 40px;
    }

    .detail-title {
        font-size: 2rem;
    }

    .detail-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.4rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET SMALL (768px and below)
   ============================================ */
@media (max-width: 768px) {
    /* Hero Section */
    .posh-hero {
        padding: 100px 15px 50px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.7;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-icon {
        font-size: 1.5rem;
    }

    /* Services Overview */
    .services-overview {
        padding: 60px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    /* Detailed Services */
    .detailed-services {
        padding: 60px 15px;
    }

    .service-detail {
        margin-bottom: 60px;
    }

    .detail-content {
        flex-direction: column !important;
        gap: 25px;
        text-align: center;
    }

    .detail-visual {
        width: 100%;
    }

    .detail-icon-large {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        border-radius: 25px;
    }

    .detail-text {
        text-align: center;
    }

    .detail-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .detail-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .detail-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .detail-item {
        padding: 25px 20px;
        text-align: left;
    }

    .detail-item-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .detail-item-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Statistics Section */
    .stats-section {
        padding: 60px 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 15px;
    }

    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    /* Hero Section */
    .posh-hero {
        padding: 90px 12px 40px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
        margin-bottom: 15px;
    }

    .hero-badge i {
        display: none;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .floating-icon {
        font-size: 1.2rem;
        opacity: 0.5;
    }

    /* Services Overview */
    .services-overview {
        padding: 50px 12px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .services-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .service-card {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    .service-features li {
        font-size: 0.8rem;
        padding-left: 18px;
    }

    /* Detailed Services */
    .detailed-services {
        padding: 50px 12px;
    }

    .service-detail {
        margin-bottom: 50px;
    }

    .detail-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        border-radius: 20px;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .detail-description {
        font-size: 0.9rem;
    }

    .detail-grid {
        gap: 15px;
    }

    .detail-item {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .detail-item-title {
        font-size: 1rem;
    }

    .detail-item-text {
        font-size: 0.85rem;
    }

    /* Statistics Section */
    .stats-section {
        padding: 50px 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 10px 5px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-number::after {
        width: 30px;
        height: 2px;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0;
    }

    /* CTA Section */
    .cta-section {
        padding: 50px 12px;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - EXTRA SMALL (360px and below)
   ============================================ */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .detail-title {
        font-size: 1.35rem;
    }

    .detail-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION FIXES
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .posh-hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        margin-bottom: 20px;
    }

    .floating-icon {
        display: none;
    }
}

/* ============================================
   HOVER EFFECTS - DISABLE ON TOUCH DEVICES
   ============================================ */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }

    .detail-item:hover {
        transform: none;
    }

    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .posh-hero {
        min-height: auto;
        padding: 20px;
    }

    .hero-animation {
        display: none;
    }

    .floating-icon {
        display: none;
    }

    .service-card,
    .detail-item {
        break-inside: avoid;
    }
}