/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* Container */
.container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.bg-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background-color: #b76e79;
    filter: blur(60px);
    opacity: 0.05;
}

.circle-1 {
    top: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
}

.circle-2 {
    bottom: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
}

.geometric-square {
    position: absolute;
    top: 160px;
    left: 33%;
    width: 128px;
    height: 128px;
    border: 1px solid #b76e79;
    opacity: 0.1;
    transform: rotate(45deg);
}

.geometric-circle {
    position: absolute;
    bottom: 160px;
    right: 25%;
    width: 96px;
    height: 96px;
    border: 2px solid #b76e79;
    border-radius: 50%;
    opacity: 0.1;
}

/* Header */
.header {
    position: relative;
    z-index: 20;
    padding: 2rem 3rem;
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 56px;
    width: auto;
}

.brand-name {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.brand-shazfa {
    font-family: 'Cinzel', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
}

.brand-clothing {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #b76e79;
    letter-spacing: 2px;
}

.brand-trademark {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: #999999;
    vertical-align: super;
}

.header-badge {
    padding: 0.5rem 1rem;
    border: 1px solid #b76e79;
    background-color: rgba(183, 110, 121, 0.05);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #b76e79;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding: 2rem 3rem 6rem;
}

.main-content > * {
    max-width: 1280px;
    margin: 0 auto;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

/* Left Content */
.left-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.headline-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.75rem;
    font-weight: 600;
    line-height: 1;
    color: #1a1a1a;
}

.headline-line {
    display: block;
    margin-bottom: 0.5rem;
}

.headline-italic {
    font-style: italic;
    color: #b76e79;
}

.subheading-section {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: #b76e79;
    opacity: 0.2;
    line-height: 1;
}

.subheading-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #666666;
    line-height: 1.8;
    padding-top: 1rem;
}

/* Email Form */
.email-form-section {
    padding-top: 1rem;
}

.success-message {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(183, 110, 121, 0.125);
    border: 1px solid #b76e79;
    color: #b76e79;
    font-weight: 500;
    animation: fadeIn 0.5s ease-in;
}

.mail-icon {
    flex-shrink: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
}

.email-input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #333333;
    outline: none;
    transition: border-color 0.3s;
}

.email-input:focus,
.email-input:valid {
    border-bottom-color: #b76e79;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #b76e79;
    width: 0;
    transition: width 0.5s;
}

.email-input:focus + .input-border,
.email-input:valid + .input-border {
    width: 100%;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color: #b76e79;
    color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    width: fit-content;
}

.submit-btn:hover {
    gap: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.submit-btn:hover::before {
    opacity: 1;
}

.arrow-icon {
    transition: transform 0.3s;
}

.submit-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.form-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #aaaaaa;
    font-style: italic;
    padding-top: 0.5rem;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 3rem;
    border-top: 1px solid #f0f0f0;
}

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

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #b76e79;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 1px;
    line-height: 1.5;
}

/* Right Content - Image */
.right-content {
    position: relative;
}

.image-container {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    z-index: 10;
    aspect-ratio: 3/4;
    overflow: hidden;
    transition: transform 0.3s;
}

.main-image-wrapper:hover .fashion-image {
    transform: scale(1.05);
}

.fashion-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, #b76e79 100%);
    opacity: 0;
    transition: opacity 0.7s;
}

.main-image-wrapper:hover .image-overlay {
    opacity: 0.3;
}

.corner-accent {
    position: absolute;
    width: 64px;
    height: 64px;
    border-color: rgba(255, 255, 255, 0.5);
}

.corner-accent.top-left {
    top: 0;
    left: 0;
    border-top: 2px solid;
    border-left: 2px solid;
}

.corner-accent.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.decorative-frame {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid #b76e79;
    z-index: 0;
}

.decorative-square {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    border: 2px solid #b76e79;
    opacity: 0.3;
}

.floating-badge {
    position: absolute;
    left: -32px;
    top: 33%;
    transform: rotate(90deg);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #b76e79;
    font-weight: 700;
    padding: 12px 24px;
    border: 2px solid #b76e79;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: none;
}

.vertical-text {
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: #cccccc;
    font-weight: 300;
    display: none;
}

@media (min-width: 1024px) {
    .floating-badge {
        display: block;
    }
}

@media (min-width: 1280px) {
    .vertical-text {
        display: block;
    }
}

/* Bottom Section */
.bottom-section {
    max-width: 1280px;
    margin: 10rem auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
    border-top: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
    .bottom-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #999999;
    line-height: 1.8;
    max-width: 28rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s;
    color: #b76e79;
}

.social-icon:hover {
    border-color: #b76e79;
    background-color: rgba(183, 110, 121, 0.031);
    transform: scale(1.1);
}

/* Contact Section */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #999999;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #b76e79;
}

.contact-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #333333;
    line-height: 1.6;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    padding: 2.5rem 3rem;
    border-top: 2px solid #f0f0f0;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.copyright-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #b76e79;
    color: #b76e79;
    font-size: 12px;
    font-weight: 700;
}

.copyright-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #999999;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: #999999;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-link:hover {
    opacity: 1;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    text-decoration: none;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.75;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.75;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.whatsapp-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background-color: #333333;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #333333;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Responsive Typography */
@media (min-width: 768px) {
    .main-headline {
        font-size: 4.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .brand-shazfa {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 64px;
    }
}

@media (min-width: 1024px) {
    .main-headline {
        font-size: 5.5rem;
    }
}

@media (min-width: 1280px) {
    .main-headline {
        font-size: 6rem;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .header {
        padding: 2rem 1.5rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem 4rem;
    }
    
    .footer {
        padding: 2.5rem 1.5rem;
    }
    
    .floating-badge,
    .vertical-text,
    .decorative-frame,
    .decorative-square {
        display: none;
    }
    
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-icon {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
}
