/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --accent-color: #D4C8B0; /* Light gold */
    --dark-bg: #2C2C2C;
    --dark-text: #1A1A1A;
    --light-bg: #F9F7F4;
    --light-text: #FFFFFF;
    --medium-bg: #EFEAE2;
    --primary-color: #8B7D65; /* Elegant gold/bronze */
    --secondary-color: #1A1A1A; /* Rich black */
    --text-color: #333333;
    
    /* Typography */
    --accent-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
    --heading-font: 'Playfair Display', serif;
    
    /* Shadows */
    --dark-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --light-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    --medium-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    
    /* Transitions */
    --transition: all 0.3s ease-in-out;
    
    /* Border Radius */
    --border-radius: 0px;
    --button-radius: 0px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FFFFFF;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.subtitle {
    color: var(--primary-color);
    display: block;
    font-family: var(--accent-font);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* ===== UTILITY CLASSES ===== */
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ===== PREMIUM BUTTON STYLES ===== */
.btn {
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-block;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 15px 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #6b5b47 100%);
    color: var(--light-text);
    box-shadow: 
        0 10px 30px rgba(139, 125, 101, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.primary-btn:hover {
    background: linear-gradient(135deg, #6b5b47 0%, var(--primary-color) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(139, 125, 101, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.primary-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.secondary-btn {
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.1) 0%, rgba(139, 125, 101, 0.05) 100%);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(139, 125, 101, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(139, 125, 101, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.secondary-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.appointment-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
    color: var(--light-text);
    font-size: 0.9rem;
    padding: 12px 25px;
    box-shadow: 
        0 8px 25px rgba(26, 26, 26, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.appointment-btn:hover {
    background: linear-gradient(135deg, #000000 0%, var(--secondary-color) 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 15px 35px rgba(26, 26, 26, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.text-btn {
    align-items: center;
    background: none;
    color: var(--primary-color);
    display: inline-flex;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    text-transform: none;
    transition: all 0.3s ease;
}

.text-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.text-btn:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.text-btn:hover::after {
    width: 100%;
}

.text-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.text-btn:hover i {
    transform: translateX(5px);
}

/* CTA Buttons for Hero Section */
.cta-buttons .primary-btn, .cta-buttons .secondary-btn {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-buttons .primary-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-buttons .primary-btn:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
    box-shadow: 
        0 20px 40px rgba(255, 107, 107, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-buttons .secondary-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-buttons .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.section-header {
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    text-align: center;
}

/* ===== NAVBAR ===== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    left: 0;
    position: fixed;
    top: 0;
    transition: var(--transition);
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background-color: #FFFFFF;
    box-shadow: var(--light-shadow);
}

.navbar {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    transition: var(--transition);
}

.logo a {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
    font-weight: 400;
}

.nav-links {
    align-items: center;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links a::after {
    background-color: var(--primary-color);
    bottom: -5px;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transition: var(--transition);
    width: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-button {
    margin-left: 20px;
}

.hamburger {
    cursor: pointer;
    display: none;
}

.bar {
    background-color: var(--secondary-color);
    display: block;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition);
    width: 25px;
}

/* ===== PAGE BANNER STYLES ===== */
.page-banner {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f8f9fa 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 125, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 125, 101, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 14px;
    margin-top: 20px;
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-color);
}

/* ===== HERO SECTION WITH VIDEO ===== */
.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1) rotate(0deg); }
    100% { opacity: 0.8; transform: scale(1.05) rotate(1deg); }
}

/* Floating particles animation */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatingParticles 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatingParticles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.hero-video {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    /* Fallback background image */
    background-image: url('../my_media/suits.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    /* Hide video if it fails to load */
    background: transparent;
}

.video-overlay {
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.4) 50%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
    backdrop-filter: blur(1px);
}

.hero-content {
    color: var(--light-text);
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    padding-top: 80px;
    width: 90%;
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideContentFadeIn 1.5s ease-out;
}

@keyframes slideContentFadeIn {
    0% { 
        opacity: 0; 
        transform: translateY(50px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.hero-content h1 {
    color: var(--light-text);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 700px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #e8eaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    animation: heroTextGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes heroTextGlow {
    0% { text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 8px 40px rgba(255, 255, 255, 0.6); }
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

.hero-content p {
    font-family: var(--accent-font);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
    animation: heroTextSlide 1.5s ease-out 0.3s both;
}

@keyframes heroTextSlide {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 0.9; 
        transform: translateY(0); 
    }
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: ctaButtonsSlide 1.5s ease-out 0.6s both;
}

@keyframes ctaButtonsSlide {
    0% { 
        opacity: 0; 
        transform: translateY(30px) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* ===== LEGACY CRAFTSMANSHIP SECTION ===== */
.legacy-craftsmanship {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.legacy-craftsmanship::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 125, 101, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(45, 45, 45, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.legacy-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.legacy-text h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legacy-text p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.9;
}

.legacy-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 2.5rem;
    vertical-align: top;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.legacy-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

.legacy-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.1) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.legacy-image:hover::before {
    opacity: 0;
}

.image-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(1.05) contrast(1.1);
}

.legacy-image:hover .image-placeholder img {
    transform: scale(1.05);
}

.text-btn {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
}

.text-btn:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
    transform: translateX(5px);
}

.text-btn i {
    transition: transform 0.3s ease;
}

.text-btn:hover i {
    transform: translateX(5px);
}

/* Responsive design for legacy craftsmanship */
@media (max-width: 768px) {
    .legacy-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .legacy-text h2 {
        font-size: 2.2rem;
    }
    
    .legacy-stats {
        justify-content: center;
        gap: 40px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .legacy-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-plus {
        font-size: 1.5rem;
    }
}

/* ===== TAILORING EMPHASIS SECTION ===== */
.tailoring-emphasis {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.tailoring-emphasis::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 125, 101, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 45, 45, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.emphasis-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.emphasis-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

.emphasis-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.1) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.emphasis-image:hover::before {
    opacity: 0;
}

.emphasis-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    filter: brightness(1.05) contrast(1.1);
}

.emphasis-image:hover img {
    transform: scale(1.05);
}

.emphasis-text h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emphasis-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.9;
}

.services-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.6) 100%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(139, 125, 101, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-icon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.05) 0%, rgba(139, 125, 101, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(139, 125, 101, 0.15),
        0 8px 25px rgba(139, 125, 101, 0.1);
    border-color: rgba(139, 125, 101, 0.2);
}

.service-icon-item:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 25px rgba(139, 125, 101, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.service-icon-item:hover .icon-wrapper {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 15px 35px rgba(139, 125, 101, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.service-icon-item:hover .icon-wrapper i {
    transform: scale(1.1);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.service-icon-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.3;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-icon-item:hover span {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive design for tailoring emphasis */
@media (max-width: 768px) {
    .emphasis-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .emphasis-text h2 {
        font-size: 2.2rem;
    }
    
    .services-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-icon-item {
        padding: 15px 10px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.3rem;
    }
    
    .service-icon-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-icons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===== BRAND INTRO ===== */
.brand-intro {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.brand-intro .container {
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-image {
    position: relative;
}

.intro-image::before {
    border: 1px solid var(--primary-color);
    content: '';
    height: 100%;
    left: -20px;
    position: absolute;
    top: -20px;
    width: 100%;
    z-index: 1;
}

.intro-image img {
    position: relative;
    z-index: 2;
}

/* ===== FEATURED SERVICES WITH PREMIUM STYLING ===== */
.featured-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f2ff 100%);
    position: relative;
    overflow: hidden;
}

.featured-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 125, 101, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 125, 101, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid rgba(139, 125, 101, 0.1);
    border-radius: 20px;
    padding: 15px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(139, 125, 101, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.02) 0%, rgba(139, 125, 101, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 2;
}

.service-card:hover {
    border-color: rgba(139, 125, 101, 0.2);
    box-shadow: 
        0 30px 80px rgba(139, 125, 101, 0.15),
        0 10px 40px rgba(139, 125, 101, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-15px) scale(1.02);
}

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

.service-card:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 3;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 35px rgba(139, 125, 101, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(10deg);
    box-shadow: 
        0 25px 50px rgba(139, 125, 101, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--light-text);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 8px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card:hover h3 {
    transform: translateY(-2px);
}

.service-card p {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.service-card:hover p {
    transform: translateY(-2px);
    color: var(--text-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 8px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 0;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.service-link:hover i {
    transform: translateX(5px) scale(1.1);
}

.services-cta {
    text-align: center;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== COLLECTIONS PREVIEW ===== */
.collections-preview {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.collections-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.collection-item {
    background-color: #FFFFFF;
    box-shadow: var(--light-shadow);
    transition: var(--transition);
}

.collection-item:hover {
    box-shadow: var(--medium-shadow);
    transform: translateY(-10px);
}

.collection-image {
    overflow: hidden;
    position: relative;
}

.collection-image img {
    height: 350px;
    object-fit: contain;
    transition: var(--transition);
    width: 100%;
    background-color: #f8f8f8;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 100%;
}

.collection-item:hover .collection-overlay {
    opacity: 1;
}

.collection-info {
    padding: 20px;
    text-align: center;
}

.collection-info h3 {
    margin-bottom: 5px;
}

.collection-info p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== TAILORING PROCESS ===== */
.tailoring-process {
    background-color: var(--light-bg);
    padding: 100px 0;
}

.process-steps {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 50px;
}

.process-step {
    align-items: flex-start;
    display: flex;
    gap: 20px;
}

.step-number {
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--light-text);
    flex-shrink: 0;
    font-family: var(--accent-font);
    font-size: 1.2rem;
    font-weight: 600;
    height: 60px;
    line-height: 60px;
    text-align: center;
    width: 60px;
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.process-cta {
    text-align: center;
}

/* ===== PROCESS PAGE SPECIFIC STYLES ===== */
.process-intro {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

.process-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.process-intro .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-intro .section-title {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-intro .subtitle {
    color: var(--primary-color);
    font-family: var(--accent-font);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-intro .intro-text {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 900px;
}

.process-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.process-video {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--medium-shadow);
}

.process-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(139, 125, 101, 0.9);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    background-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.process-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--light-shadow);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--medium-shadow);
}

.stat-number {
    display: block;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--secondary-color);
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Steps Timeline */
.process-steps {
    padding: 100px 0;
    background-color: #ffffff;
    width: 100%;
}

.process-steps .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.steps-timeline {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.timeline-step:nth-child(even) {
    grid-template-columns: 300px 1fr 80px;
}

.timeline-step:nth-child(even) .step-number {
    order: 3;
}

.timeline-step:nth-child(even) .step-content {
    order: 2;
    text-align: right;
}

.timeline-step:nth-child(even) .step-image {
    order: 1;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -80px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), rgba(139, 125, 101, 0.3));
}

.timeline-step:nth-child(even)::before {
    left: auto;
    right: 40px;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step .step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(139, 125, 101, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-step .step-content h3 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.timeline-step .step-content p {
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.7;
    margin-bottom: 25px;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.detail i {
    color: var(--primary-color);
    width: 16px;
}

.step-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--medium-shadow);
    transition: var(--transition);
}

.step-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--heavy-shadow);
}

.step-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Craftsmanship Details */
.craftsmanship-details {
    padding: 100px 0;
    background-color: var(--light-bg);
    width: 100%;
}

.craftsmanship-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.detail-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--light-shadow);
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--heavy-shadow);
}

.detail-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.detail-card h3 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: white;
    width: 100%;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question h3 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.testimonial-slider {
    margin: 0 auto;
    max-width: 800px;
    position: relative;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    animation: fadeIn 1s ease-in-out;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: var(--light-bg);
    padding: 50px 40px;
    position: relative;
    text-align: center;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-content p {
    font-family: var(--accent-font);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.client-info p {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.testimonial-controls {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.testimonial-dots .dot {
    background-color: rgba(139, 125, 101, 0.3);
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color);
}

.testimonial-controls .prev-btn,
.testimonial-controls .next-btn {
    color: var(--secondary-color);
}

/* ===== APPOINTMENT CTA ===== */
.appointment-cta {
    background-color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 2rem;
    max-width: 600px;
}

/* ===== PORTFOLIO GALLERY ===== */
.portfolio-gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
    width: 100%;
}

.gallery-overlay {
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 125, 101, 0.9), rgba(45, 45, 45, 0.9));
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: var(--transition);
    width: 100%;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-content {
    color: var(--light-text);
    text-align: center;
}

.gallery-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.gallery-cta {
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
}

.footer-logo h2 {
    color: var(--light-text);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    display: flex;
    height: 40px;
    justify-content: center;
    transition: var(--transition);
    width: 40px;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.footer h3 {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    align-items: center;
    display: flex;
    margin-bottom: 15px;
}

.footer-contact p i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--light-text);
    flex: 1;
    font-family: var(--body-font);
    padding: 12px 15px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter button {
    background-color: var(--primary-color);
    border: none;
    color: var(--light-text);
    cursor: pointer;
    padding: 0 20px;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== JOURNAL PAGE STYLES ===== */
.journal-intro {
    padding: 80px 0 40px;
    text-align: center;
}

.journal-intro .intro-text {
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.8;
    margin: 30px auto;
    max-width: 800px;
}

.journal-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.category-tag {
    border: 1px solid var(--primary-color);
    color: var(--secondary-color);
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    transition: var(--transition);
}

.category-tag:hover, .category-tag.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Featured Article */
.featured-article {
    background-color: var(--light-bg);
    padding: 40px 0 80px;
}

.featured-article-container {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}

.featured-image {
    border-radius: var(--border-radius);
    box-shadow: var(--medium-shadow);
    overflow: hidden;
    position: relative;
}

.featured-image img {
    display: block;
    height: auto;
    transition: var(--transition);
    width: 100%;
}

.featured-article-container:hover .featured-image img {
    transform: scale(1.05);
}

.article-category {
    background-color: var(--primary-color);
    color: var(--light-text);
    font-family: var(--body-font);
    font-size: 12px;
    font-weight: 500;
    left: 20px;
    letter-spacing: 1px;
    padding: 5px 15px;
    position: absolute;
    text-transform: uppercase;
    top: 20px;
}

.featured-content {
    padding: 20px 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-color);
}

.article-title {
    font-family: var(--heading-font);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--secondary-color);
}

.article-excerpt {
    font-family: var(--body-font);
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Journal Articles Grid */
.journal-articles {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 60px;
}

.article-card {
    border-radius: var(--border-radius);
    box-shadow: var(--light-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--medium-shadow);
    transform: translateY(-10px);
}

.article-image {
    overflow: hidden;
    position: relative;
}

.article-image img {
    display: block;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    width: 100%;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-content {
    padding: 25px;
    background-color: #FFFFFF;
}

.article-card .article-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.article-card .article-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read-more {
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.btn-read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--secondary-color);
}

.btn-read-more:hover::after {
    width: 100%;
}

/* Pagination */
.pagination {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pagination a {
    align-items: center;
    border: 1px solid var(--medium-bg);
    color: var(--secondary-color);
    display: flex;
    font-family: var(--body-font);
    font-size: 14px;
    height: 40px;
    justify-content: center;
    transition: var(--transition);
    width: 40px;
}

.pagination a.pagination-next {
    padding: 0 20px;
    width: auto;
}

.pagination a.pagination-next i {
    font-size: 12px;
    margin-left: 8px;
}

.pagination a:hover, .pagination a.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
}

.pagination-dots {
    color: var(--text-color);
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.newsletter-container {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr;
}

.newsletter-content h2 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.8;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox-group {
    align-items: flex-start;
    display: flex;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
}

.checkbox-group label {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 14px;
    line-height: 1.5;
}

.form-success {
    padding: 30px;
    text-align: center;
}

.form-success i {
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 24px;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-color);
    font-family: var(--body-font);
}

.newsletter-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--medium-shadow);
    height: auto;
    width: 100%;
}

/* Article Detail Page Styles */
.article-header {
    background-color: var(--light-bg);
    padding: 80px 0 40px;
    text-align: center;
}

.article-header .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.article-header .article-category {
    display: inline-block;
    position: static;
}

.article-header .article-title {
    font-size: 42px;
    margin: 0 auto 30px;
    max-width: 900px;
}

.article-share {
    align-items: center;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.article-share span {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 14px;
}

.article-share a {
    align-items: center;
    background-color: var(--light-text);
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    height: 36px;
    justify-content: center;
    transition: var(--transition);
    width: 36px;
}

.article-share a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.article-featured-image {
    margin-bottom: 60px;
}

.article-featured-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--medium-shadow);
    height: auto;
    width: 100%;
}

.article-content {
    padding: 0 0 80px;
}

.article-body {
    max-width: 800px;
    margin: 0 auto 60px;
}

.article-intro {
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.8;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.article-body h2 {
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 40px 0 20px;
}

.article-body p {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.article-quote {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
}

.article-quote blockquote {
    font-family: var(--accent-font);
    font-size: 22px;
    line-height: 1.6;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 15px;
}

.article-quote cite {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-color);
    font-style: normal;
    display: block;
    text-align: right;
}

.article-image-with-caption {
    margin: 40px 0;
}

.article-image-with-caption img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--light-shadow);
}

.image-caption {
    font-family: var(--body-font);
    font-size: 14px;
    color: var(--text-color);
    font-style: italic;
    text-align: center;
    margin-top: 15px;
}

.article-list {
    margin: 20px 0 30px 20px;
}

.article-list li {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.article-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.article-author-bio {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    display: flex;
    gap: 30px;
    margin: 0 auto;
    max-width: 800px;
    padding: 30px;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    border: 3px solid var(--light-text);
    border-radius: 50%;
    box-shadow: var(--light-shadow);
    height: 120px;
    object-fit: cover;
    width: 120px;
}

.author-info h3 {
    color: var(--primary-color);
    font-family: var(--body-font);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.author-info h4 {
    color: var(--secondary-color);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.author-info p {
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social a {
    align-items: center;
    background-color: var(--light-text);
    border-radius: 50%;
    color: var(--secondary-color);
    display: flex;
    height: 36px;
    justify-content: center;
    transition: var(--transition);
    width: 36px;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.related-articles {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.related-articles .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.related-articles-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive Styles for Journal Pages */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .featured-article-container,
    .newsletter-container {
        grid-template-columns: 1fr;
    }
    
    .articles-grid,
    .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-header .article-title {
        font-size: 36px;
    }
    
    .article-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .articles-grid,
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .newsletter-content h2 {
        font-size: 30px;
    }
    
    .article-header .article-title {
        font-size: 32px;
    }
    
    .article-intro {
        font-size: 18px;
    }
    
    .article-body h2 {
        font-size: 24px;
    }
    
    .article-quote blockquote {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .journal-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tag {
        width: 100%;
        text-align: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .pagination a {
        width: 35px;
        height: 35px;
    }
    
    .article-header .article-title {
        font-size: 28px;
    }
    
    .article-share {
        flex-wrap: wrap;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .slide-content h1 {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .timeline-step {
        grid-template-columns: 70px 1fr 250px;
        gap: 30px;
    }
    
    .timeline-step:nth-child(even) {
        grid-template-columns: 250px 1fr 70px;
    }
    
    .timeline-step .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .brand-intro .container,
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .services-grid,
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
    
    .process-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .timeline-step {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .timeline-step:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .timeline-step:nth-child(even) .step-content {
        text-align: center;
        order: 2;
    }
    
    .timeline-step:nth-child(even) .step-image {
        order: 3;
    }
    
    .timeline-step:nth-child(even) .step-number {
        order: 1;
    }
    
    .timeline-step::before,
    .timeline-step:nth-child(even)::before {
        display: none;
    }
    
    .step-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .brand-intro .container,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Fix for Our Craft section mobile layout */
    .tailoring-process {
        padding: 80px 0;
        overflow-x: hidden;
    }
    
    .tailoring-process .container {
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .process-step {
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        width: 100%;
    }
    
    .step-content {
        flex: 1;
        min-width: 0;
        word-wrap: break-word;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        word-wrap: break-word;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .navbar {
        padding: 15px 5%;
    }
    
    .nav-links {
        align-items: center;
        background-color: #FFFFFF;
        flex-direction: column;
        height: calc(100vh - 70px);
        justify-content: flex-start;
        left: -100%;
        padding-top: 40px;
        position: fixed;
        top: 70px;
        transition: var(--transition);
        width: 100%;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    /* Hero Section Mobile Styles */
    .hero-content {
        padding: 0 20px;
        text-align: center;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 30px;
        font-size: 0.95rem;
        text-align: center;
    }
    
    .services-grid,
    .collections-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        margin: 0 auto;
        text-align: center;
    }
    
    .slide-content h1,
    .slide-content p {
        max-width: 100%;
    }
    
    .slider-controls {
        bottom: 20px;
    }
    
    .page-banner {
        padding: 120px 0 80px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .process-intro {
        padding: 60px 0;
    }
    
    .process-intro .section-title {
        font-size: 2rem;
    }
    
    .process-intro .subtitle {
        font-size: 1rem;
    }
    
    .process-intro .intro-text {
        font-size: 1rem;
    }
    
    .process-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-card {
        padding: 30px 20px;
    }
    
    .detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .timeline-step .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .timeline-step .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-image img {
        height: 200px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    h1, .slide-content h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    /* Hero Section Extra Small Mobile Styles */
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
        padding: 0 5px;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 5px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 16px 25px;
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Additional mobile fixes for Our Craft section */
    .process-steps {
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .process-step {
        padding: 0 5px;
        gap: 15px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .tailoring-process {
        padding: 60px 0;
    }
    
    .brand-intro,
    .featured-services,
    .collections-preview,
    .testimonials,
    .instagram-feed {
        padding: 60px 0;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .footer {
        padding-top: 60px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .page-banner {
        padding: 100px 0 60px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .process-intro {
        padding: 40px 0;
    }
    
    .process-intro .section-title {
        font-size: 1.8rem;
    }
    
    .process-intro .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .process-intro .intro-text {
        font-size: 0.95rem;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
    
    .detail-card {
        padding: 25px 15px;
    }
    
    .detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .detail-card h3 {
        font-size: 1.1rem;
    }
    
    .detail-card p {
        font-size: 0.9rem;
    }
    
    .timeline-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .timeline-step .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-image img {
        height: 180px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px 0;
    }
    
    .faq-item.active .faq-answer {
        max-height: 300px;
        padding-bottom: 20px;
    }
}

/* ===== WHATSAPP CHAT BUTTON ===== */
.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
    border: none;
    outline: none;
    white-space: nowrap;
    min-height: 50px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 22px;
    margin-right: 10px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Tablet and smaller desktop screens */
@media (max-width: 768px) {
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 20px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .whatsapp-btn i {
        font-size: 20px;
        margin-right: 8px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
}

/* Mobile responsive WhatsApp button */
@media (max-width: 576px) {
    .whatsapp-chat {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        padding: 10px 15px;
        font-size: 12px;
        min-height: 44px;
        border-radius: 25px;
    }
    
    .whatsapp-btn i {
        font-size: 18px;
        margin-right: 6px;
    }
    
    .whatsapp-text {
        font-size: 12px;
    }
}