:root {
    --gold: #C7A93C;
    --gold-gradient: linear-gradient(90deg, #C7A93C, #F2D16D);
    --gold-light: rgba(199, 169, 60, 0.1);
    --gold-dark: #a88b2c;
    --background: #f8f7f2;
    --background-alt: #f0efe5;
    --primary-text: #222222;
    --secondary-text: #555555;
    --accent: #E0E0E0;
    --accent-blue: #3c7ec7;
    --accent-green: #3CC7A9;
    --transition: all 0.3s ease;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20px 20px, rgba(199, 169, 60, 0.03) 2px, transparent 0),
        radial-gradient(circle at 40px 70px, rgba(199, 169, 60, 0.02) 3px, transparent 0);
    background-size: 60px 60px;
}

.arabic {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-divider {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
    opacity: 0.2;
}

/* Header styles */
header {
    background-color: rgba(248, 247, 242, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: rgba(248, 247, 242, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: translateY(-3px);
}

.logo h1 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* Hero section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    background-color: var(--background);
}

.hero-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 5.5rem);
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 3px;
    background: var(--gold-gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.title-underline {
    height: 4px;
    width: 120px;
    background: var(--gold-gradient);
    margin: 25px auto 30px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.name-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin: 40px auto;
    width: 90%;
    max-width: 900px;
    text-align: center;
    position: relative;
}

.founder-name {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    letter-spacing: 0.8px;
    color: rgba(199, 169, 60, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.founder-name.arabic {
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 110%;
}

.founder-name.english {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8a7c55;
}

.founders-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 2rem;
    color: var(--primary-text);
    width: 100%;
    text-align: center;
}

.hero-desc {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin: 0 auto 3rem;
    color: var(--secondary-text);
    max-width: 90%;
    line-height: 1.7;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* Button styles */
.hero-buttons {
    display: flex;
    gap: 1.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    min-width: 220px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-btn {
    background: var(--gold-gradient);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 6px 15px rgba(199, 169, 60, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -150%;
    width: 120%;
    height: 300%;
    background: linear-gradient(
        to left,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(35deg);
    z-index: 1;
    transition: all 0.7s ease;
}

.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(199, 169, 60, 0.4);
    border-color: rgba(199, 169, 60, 0.5);
    filter: brightness(1.05);
}

.primary-btn:hover::before {
    right: 120%;
    transition: all 0.7s cubic-bezier(0.3, 1, 0.8, 1);
}

.primary-btn:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 4px 10px rgba(199, 169, 60, 0.2);
}

.secondary-btn {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: -100%;
    right: -150%;
    width: 120%;
    height: 300%;
    background: linear-gradient(
        to left,
        transparent,
        rgba(199, 169, 60, 0.1),
        rgba(242, 209, 109, 0.6),
        rgba(199, 169, 60, 0.2),
        transparent
    );
    transform: rotate(35deg);
    z-index: -1;
    transition: all 0.7s ease;
}

.secondary-btn:hover {
    background-color: rgba(199, 169, 60, 0.05);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(199, 169, 60, 0.2);
    border-color: var(--gold);
}

.secondary-btn:hover::before {
    right: 120%;
    transition: all 0.7s cubic-bezier(0.3, 1, 0.8, 1);
}

.secondary-btn:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 4px 10px rgba(199, 169, 60, 0.1);
}

/* About section */
.about-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    margin-bottom: 10px;
    color: var(--primary-text);
    position: relative;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    display: none;
}

.about-underline {
    margin: 10px auto 60px;
    height: 4px;
    width: 120px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

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

.about-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

.about-col {
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 550px;
    padding: 0 30px;
    margin-bottom: 40px;
}

.about-col h3 {
    font-size: 32px;
    margin-bottom: 25px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-col p {
    margin-bottom: 20px;
    color: var(--secondary-text);
    font-size: 18px;
    line-height: 1.8;
}

.about-col.arabic {
    text-align: right;
}

.about-col.arabic h3 {
    text-align: right;
    width: 100%;
}

.about-col.arabic p {
    text-align: right;
    direction: rtl;
}

/* Products section */
.products-section {
    padding: 80px 0;
    background-color: var(--background-alt);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.products-underline {
    margin: 10px auto 60px;
    height: 4px;
    width: 120px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(199, 169, 60, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Custom card borders */
.product-card:nth-child(1)::before {
    background: linear-gradient(to right, #5c3924, #8b5a2b);
}

.product-card:nth-child(2)::before {
    background: linear-gradient(to right, #d14b8f, #f776b8);
}

.product-card:nth-child(3)::before {
    background: linear-gradient(to right, #e67e22, #f1c40f);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Custom hover shadows */
.product-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(92, 57, 36, 0.15);
}

.product-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(209, 75, 143, 0.15);
}

.product-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: white;
    background: var(--gold-gradient);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(199, 169, 60, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Custom icon backgrounds */
.product-card:nth-child(1) .product-icon {
    background: linear-gradient(45deg, #5c3924, #8b5a2b);
}

.product-card:nth-child(2) .product-icon {
    background: linear-gradient(45deg, #d14b8f, #f776b8);
}

.product-card:nth-child(3) .product-icon {
    background: linear-gradient(45deg, #e67e22, #f1c40f);
}

.product-icon::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    top: -20%;
    left: -20%;
}

.product-card:hover .product-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(199, 169, 60, 0.3);
}

.fa-cookie-bite {
    transform: translateY(-1px);
}

.fa-candy-cane {
    transform: translateY(1px);
}

.fa-glass-martini-alt {
    transform: translateY(-1px);
}

.product-card h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--primary-text);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.product-card h3.arabic {
    margin-bottom: 15px;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.product-card p {
    color: var(--secondary-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.product-card p.arabic {
    text-align: right;
    direction: rtl;
}

/* Contact section */
.contact-section {
    padding: 80px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.contact-section .container {
    width: 100%;
    max-width: 1400px;
}

.contact-underline {
    margin: 10px auto 60px;
    height: 4px;
    width: 120px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 169, 60, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.contact-info {
    flex: 1 1 350px;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(199, 169, 60, 0.1);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-header h3.arabic {
    text-align: right;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.contact-text {
    flex: 1;
}

.contact-item i {
    min-width: 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    background: var(--gold-gradient);
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 6px 15px rgba(199, 169, 60, 0.2);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-item i.fa-map-marker-alt {
    font-size: 20px;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item p {
    color: var(--secondary-text);
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.contact-item p.arabic {
    text-align: right;
    direction: rtl;
    transition: all 0.3s ease;
}

/* Add hover styles for consistent transitions */
.contact-item:hover p {
    color: var(--primary-text);
}

.contact-form {
    flex: 1 1 500px;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(199, 169, 60, 0.1);
    min-width: 300px;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.contact-form:hover::before {
    opacity: 1;
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--accent);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
    resize: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
    background-color: white;
}

.submit-btn {
    background: var(--gold-gradient);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(199, 169, 60, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.submit-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(199, 169, 60, 0.3);
    filter: brightness(1.05);
}

/* Footer */
footer {
    background-color: var(--background);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(199, 169, 60, 0.15);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(199, 169, 60, 0.25);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .name-row {
        flex-direction: column;
        gap: 5px;
        width: 95%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }

    .contact-content {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }
    
    .contact-info, 
    .contact-form {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-header h3 {
        font-size: 20px;
    }
    
    .contact-item {
        margin-bottom: 20px;
    }
    
    .footer-content {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        max-width: 100%;
    }

    .hero-section {
        padding: 5rem 1rem;
    }
    
    .hero-content {
        padding: 0;
        width: 100%;
    }
    
    .title-underline {
        margin: 5px auto 20px;
        width: 80px;
    }
    
    .hero-desc {
        margin-bottom: 2rem;
    }

    .about-text div {
        flex: 1 1 100%;
        padding: 20px;
    }

    .contact-section {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .contact-content {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 30px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 25px 80px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: auto;
        min-height: 400px;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact-header h3 {
        font-size: 20px;
        display: block;
        margin-bottom: 5px;
        width: 100%;
    }
    
    .contact-header h3.arabic {
        display: block;
        width: 100%;
    }

    .contact-item {
        margin-bottom: 20px;
        align-items: flex-start;
        width: 100%;
    }
    
    .contact-item i {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
        margin-top: 3px;
    }
    
    .contact-text {
        flex: 1;
        width: calc(100% - 55px);
        display: flex;
        flex-direction: column;
    }
    
    .contact-item p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 5px;
        width: 100%;
    }
    
    .contact-item p.arabic {
        text-align: right;
        width: 100%;
        direction: rtl;
        display: block;
        margin-top: 3px;
    }
    
    /* Special handling for the address which has both English and Arabic */
    .contact-item:last-child {
        margin-bottom: 0;
    }
    
    .contact-item:last-child .contact-text {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .contact-item:last-child p {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .contact-item:last-child p.arabic {
        padding-left: 0;
        padding-right: 0;
        margin-top: 5px;
        width: 100%;
        display: block;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 0 30px;
    }
    
    .contact-section .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .contact-content {
        gap: 20px;
        padding: 0;
    }
    
    .contact-info, 
    .contact-form {
        padding: 25px 20px 70px;
        border-radius: 12px;
    }
    
    .contact-item {
        flex-wrap: nowrap;
        width: 100%;
    }
    
    .contact-item i {
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-right: 12px;
    }

    .contact-text {
        width: calc(100% - 48px);
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 12px;
    }

    .contact-item:last-child p {
        margin-bottom: 8px;
    }
    
    .contact-item:last-child p.arabic {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .contact-info {
        padding: 25px 15px 80px;
        min-height: 420px;
    }
    
    .contact-item i {
        min-width: 32px;
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .contact-text {
        width: calc(100% - 42px);
    }
    
    .contact-item p, 
    .contact-item p.arabic {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Remove old button styles */
.cta-btn {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--gold);
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Hero banner */
.hero-banner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.banner-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .banner-img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .banner-img {
        max-width: 250px;
    }
} 