* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f6f0;
    color: #5d4e37;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #f8f6f0;
    position: relative;
    z-index: 100;
}

.nav-left .logo {
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-size: 16px;
    font-style: italic;
    color: #8b7355;
    margin-right: 5px;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: #5d4e37;
    letter-spacing: 2px;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #8b7355;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    color: #c49b7a;
}

.nav-link:hover {
    color: #c49b7a;
}

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

.social-icon {
    font-size: 18px;
    color: #8b7355;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #c49b7a;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    position: relative;
    padding: 0 50px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b7355;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: #5d4e37;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #8b7355;
    margin-bottom: 40px;
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background-color: #c49b7a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: #b8906d;
    transform: translateY(-2px);
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #c49b7a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background-color: #b8906d;
    transform: scale(1.1);
}

.play-icon {
    color: white;
    font-size: 18px;
    margin-left: 3px;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.2);
}

.hero-image {
    width: 500px;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #5d4e37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
    background-color: #c49b7a;
    color: white;
    transform: scale(1.1);
}

/* Coffee Beans Decoration */
.coffee-beans {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bean {
    position: absolute;
    width: 40px;
    height: 60px;
    background: radial-gradient(ellipse at 30% 30%, #a68b5b, #8b7355, #6b5b46);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    box-shadow: 
        inset 2px 2px 4px rgba(0,0,0,0.2),
        inset -2px -2px 4px rgba(255,255,255,0.1),
        0 4px 8px rgba(0,0,0,0.1);
}

.bean::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 35px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #4a3728 15%, 
        #3d2e21 50%, 
        #4a3728 85%, 
        transparent 100%);
    border-radius: 50px;
    box-shadow: 
        inset 1px 0 2px rgba(0,0,0,0.4),
        inset -1px 0 1px rgba(255,255,255,0.1);
}

.bean::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #2d1f18 20%, 
        #1a1209 50%, 
        #2d1f18 80%, 
        transparent 100%);
    border-radius: 50px;
}

.bean-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    width: 35px;
    height: 50px;
    transform: rotate(15deg);
}

.bean-2 {
    top: 30%;
    left: 15%;
    animation-delay: 1s;
    width: 45px;
    height: 65px;
    transform: rotate(45deg);
}

.bean-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
    width: 38px;
    height: 55px;
    transform: rotate(-30deg);
}

.bean-4 {
    top: 20%;
    right: 10%;
    animation-delay: 3s;
    width: 42px;
    height: 58px;
    transform: rotate(60deg);
}

.bean-5 {
    top: 70%;
    right: 5%;
    animation-delay: 4s;
    width: 36px;
    height: 52px;
    transform: rotate(-45deg);
}

@keyframes float {
    0% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-8px) rotate(3deg); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-15px) rotate(6deg); 
        opacity: 0.25;
    }
    75% { 
        transform: translateY(-8px) rotate(3deg); 
        opacity: 0.2;
    }
    100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
}



/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-image {
        width: 400px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero {
        padding: 0 30px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-image {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image {
        width: 300px;
        height: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .coffee-beans {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-image {
        width: 250px;
        height: 350px;
    }
    
    .btn-primary {
        padding: 12px 24px;
        font-size: 11px;
    }
}

/* About Section */
.about-section {
    padding: 80px 50px;
    background-color: #fff;
    position: relative;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.about-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b7355;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #5d4e37;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #6b5b46;
    margin-bottom: 25px;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
}

.feature-icon {
    font-size: 32px;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c49b7a, #b8906d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(196, 155, 122, 0.2);
}

.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #5d4e37;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.feature-text p {
    font-size: 14px;
    color: #8b7355;
    margin: 0;
    line-height: 1.4;
}

.about-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.15);
}

.about-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #c49b7a;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #8b7355;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* About Section Responsive Design */
@media (max-width: 1200px) {
    .about-content {
        gap: 60px;
    }
    
    .about-title {
        font-size: 44px;
    }
    
    .about-img {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 60px 30px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .about-title {
        font-size: 40px;
    }
    
    .about-img {
        height: 400px;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }
    
    .about-title {
        font-size: 32px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-img {
        height: 300px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* Our Founder Section */
.founder-section {
    padding: 100px 50px;
    background: linear-gradient(135deg, #2d3748, #1a202c);
    position: relative;
    overflow: hidden;
    color: white;
}

.founder-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.founder-quote-overlay {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.quote-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: #f7fafc;
    font-style: italic;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.founder-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.founder-image {
    flex: 0 0 400px;
    position: relative;
}

.founder-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.founder-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.founder-img-wrapper:hover .founder-img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c49b7a, #b8906d);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(196, 155, 122, 0.3);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.founder-details {
    flex: 1;
}

.founder-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c49b7a;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #f7fafc;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.founder-title {
    font-size: 18px;
    color: #c49b7a;
    margin-bottom: 30px;
    font-weight: 600;
}

.founder-story p {
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.founder-philosophy {
    background: rgba(196, 155, 122, 0.1);
    border-left: 4px solid #c49b7a;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 16px;
    color: #f7fafc;
    border-radius: 0 10px 10px 0;
}

.founder-achievements {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.achievement-icon {
    font-size: 32px;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c49b7a, #b8906d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #f7fafc;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.achievement-text p {
    font-size: 14px;
    color: #c49b7a;
    margin: 0;
}

/* Coffee Beans for Founder Section */
.coffee-beans-founder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bean-founder {
    position: absolute;
    width: 60px;
    height: 80px;
    background: radial-gradient(ellipse at 30% 30%, rgba(196, 155, 122, 0.3), rgba(139, 115, 85, 0.2), rgba(107, 91, 70, 0.1));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.1;
    animation: floatFounder 8s ease-in-out infinite;
}

.bean-founder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 45px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(196, 155, 122, 0.4) 15%, 
        rgba(139, 115, 85, 0.3) 50%, 
        rgba(196, 155, 122, 0.4) 85%, 
        transparent 100%);
    border-radius: 50px;
}

.bean-founder-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(25deg);
}

.bean-founder-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
    transform: rotate(-35deg);
}

.bean-founder-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    transform: rotate(60deg);
}

@keyframes floatFounder {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-30px) rotate(10deg); 
        opacity: 0.2;
    }
}

/* Founder Section Responsive Design */
@media (max-width: 1200px) {
    .founder-content {
        gap: 60px;
    }
    
    .founder-image {
        flex: 0 0 350px;
    }
    
    .founder-name {
        font-size: 40px;
    }
    
    .founder-quote {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .founder-section {
        padding: 80px 30px;
    }
    
    .founder-content {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .founder-image {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .founder-name {
        font-size: 36px;
    }
    
    .founder-quote {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 20px;
    }
    
    .founder-image {
        max-width: 300px;
    }
    
    .founder-img {
        height: 400px;
    }
    
    .founder-name {
        font-size: 32px;
    }
    
    .founder-quote {
        font-size: 24px;
    }
    
    .achievement-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .achievement-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .coffee-beans-founder {
        display: none;
    }
}

/* Our Outlets Section */
.outlets-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ebe0 100%);
    position: relative;
    overflow: hidden;
}

.outlets-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.outlets-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.outlets-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #c49b7a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.outlets-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #c49b7a;
}

.outlets-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #5d4e37;
    line-height: 1.2;
    margin-bottom: 20px;
}

.outlets-description {
    font-size: 18px;
    color: #6b5b4d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.outlet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(93, 78, 55, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.outlet-card:nth-child(2) {
    animation-delay: 0.5s;
}

.outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(93, 78, 55, 0.15);
}

.outlet-content {
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #faf9f7 100%);
}

.outlet-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #5d4e37;
    margin-bottom: 20px;
}

.outlet-address {
    margin-bottom: 20px;
}

.outlet-address p {
    color: #6b5b4d;
    margin: 5px 0;
    font-size: 16px;
}

.outlet-hours p {
    color: #6b5b4d;
    margin: 8px 0;
    font-size: 16px;
}

.outlet-hours strong {
    color: #5d4e37;
}

.outlet-map {
    height: 250px;
    position: relative;
}

.outlet-map iframe {
    border-radius: 0 0 20px 20px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.outlet-card:hover .outlet-map iframe {
    filter: grayscale(0);
}

/* Responsive Design for Outlets */
@media (max-width: 768px) {
    .outlets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .outlet-card {
        min-width: auto;
    }
    
    .outlets-title {
        font-size: 36px;
    }
    
    .outlet-content {
        padding: 20px;
    }
    
    .outlet-name {
        font-size: 20px;
    }
    
    .outlet-map {
        height: 200px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #5d4e37 0%, #4a3c2a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.contact-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #c49b7a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.contact-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #c49b7a;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 18px;
    color: #e0d5c7;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease-out 0.3s forwards;
}

.contact-item:nth-child(2) {
    animation-delay: 0.5s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.7s;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 155, 122, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}

.contact-details p {
    color: #e0d5c7;
    margin: 5px 0;
    line-height: 1.5;
}

.contact-details a {
    color: #c49b7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: white;
}

.outlet-address-item {
    margin-bottom: 20px;
}

.outlet-address-item:last-child {
    margin-bottom: 0;
}

.outlet-address-item strong {
    color: #c49b7a;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.contact-form-wrapper {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b8a895;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c49b7a;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(196, 155, 122, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #5d4e37;
    color: white;
}

.contact-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #c49b7a 0%, #b8936f 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #b8936f 0%, #a67d5b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 155, 122, 0.3);
}

/* Footer */
.footer {
    background: #2c1810;
    color: #e0d5c7;
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #c49b7a;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: white;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e0d5c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c49b7a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(224, 213, 199, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: #b8a895;
}

/* Responsive Design for Contact & Footer */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 50px;
    background-color: #f8f6f0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b7355;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #5d4e37;
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonials-description {
    font-size: 16px;
    color: #8b7355;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 20px;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(93, 78, 55, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.15);
    transform: translateY(-5px);
}

.testimonial-content::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: #c49b7a;
    position: absolute;
    top: 10px;
    left: 30px;
    opacity: 0.3;
    line-height: 1;
}

.stars {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #5d4e37;
    margin: 0 0 30px 0;
    font-style: italic;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid #e0d5c7;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #5d4e37;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.author-role {
    font-size: 14px;
    color: #8b7355;
    margin: 0;
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e0d5c7;
    cursor: pointer;
    font-size: 20px;
    color: #5d4e37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-nav-btn:hover {
    background-color: #c49b7a;
    color: white;
    border-color: #c49b7a;
    transform: scale(1.05);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0d5c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #c49b7a;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #b8906d;
}

/* Testimonials Responsive Design */
@media (max-width: 1200px) {
    .testimonials-title {
        font-size: 40px;
    }
    
    .testimonials-slider {
        height: 380px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 30px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-slider {
        height: 400px;
    }
    
    .testimonial-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-slider {
        height: 420px;
    }
    
    .testimonial-content {
        padding: 25px;
    }
    
    .testimonial-content::before {
        font-size: 60px;
        top: 5px;
        left: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .testimonials-navigation {
        gap: 20px;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        height: 450px;
    }
    
    .testimonial-author {
        text-align: center;
    }
}

/* Gallery Showcase Section */
.gallery-showcase {
    padding: 80px 50px;
    background-color: #f2f0ea;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.gallery-text {
    flex: 0 0 300px;
    padding-right: 20px;
}

.gallery-subtitle {
    font-size: 12px;
    letter-spacing: 3px;
    color: #8b7355;
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: #5d4e37;
    line-height: 1.2;
    margin-bottom: 40px;
}

.gallery-navigation {
    display: flex;
    gap: 15px;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid #e0d5c7;
    cursor: pointer;
    font-size: 20px;
    color: #5d4e37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gallery-nav-btn:hover {
    background-color: #c49b7a;
    color: white;
    border-color: #c49b7a;
    transform: scale(1.05);
}

.gallery-slider {
    flex: 1;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(93, 78, 55, 0.15);
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-slide:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Auto Slider Animation */
.gallery-track.sliding {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} 