/* Container & Layout - AGGRESSIVE FULL WIDTH */
.amp-container {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    color: #fff;
    font-family: 'Playfair Display', serif;
    /* Force full width regardless of parent container */
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    overflow: hidden;
    transform: translateX(0); /* Reset transform context */
}

/* Ensure body/html doesn't cause scrollbar due to 100vw */
body {
    overflow-x: hidden;
}

.amp-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
    box-sizing: border-box;
}

.amp-col {
    flex: 1;
    min-width: 300px;
}

/* Typography */
.amp-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E0C075;
    margin-bottom: 20px;
    font-weight: 600;
}

.amp-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 30px;
}

.amp-title-white {
    color: #fff;
}

.amp-title-gold {
    background: linear-gradient(90deg, #E0C075 0%, #F5E0A3 50%, #B89650 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.amp-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.amp-description p {
    margin-bottom: 20px;
}

/* Buttons */
.amp-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.amp-btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.amp-btn-primary {
    background-color: #E0C075;
    color: #000;
    border: 1px solid transparent;
}

.amp-btn-primary:hover {
    background-color: #fff;
    color: #000;
}

.amp-btn-secondary {
    background-color: transparent;
    border: 1px solid #E0C075;
    color: #E0C075;
}

.amp-btn-secondary:hover {
    background-color: #E0C075;
    color: #000;
}

/* Image & Badge */
.amp-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    aspect-ratio: 4/5;
}

.amp-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.amp-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: #000;
    border: 1px solid #E0C075;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    min-width: 160px;
}

.amp-badge-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E0C075;
    margin-bottom: 5px;
}

.amp-badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.amp-badge-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #888;
}

/* Responsive */
@media (max-width: 991px) {
    .amp-row {
        flex-direction: column-reverse; /* Image first on mobile */
        gap: 50px;
    }
    
    .amp-col-content {
        text-align: center;
    }
    
    .amp-buttons {
        justify-content: center;
    }
    
    .amp-title {
        font-size: 36px;
    }

    .amp-badge {
        bottom: -15px; /* Moved up slightly */
        left: 50%;
        transform: translateX(-50%);
        width: auto; /* Remove forced width */
        min-width: 120px; /* Smaller min-width */
        padding: 10px 20px; /* Smaller padding */
    }

    .amp-badge-title {
        font-size: 8px; /* Smaller font */
        margin-bottom: 2px;
    }

    .amp-badge-number {
        font-size: 24px; /* Smaller number */
        margin-bottom: 2px;
    }

    .amp-badge-subtitle {
        font-size: 9px; /* Smaller font */
    }
}
