/* CSS Reset & Custom Properties */
:root {
    --color-light: #E4E0E1;      /* Light gray/white */
    --color-secondary: #D6C0B3;  /* Beige / Taupe */
    --color-primary: #AB886D;    /* Warm Brown */
    --color-dark: #2C2A29;       /* Dark text */
    --color-dark-muted: #4A4644; /* Muted text */
    --color-white: #ffffff;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    --transition: all 0.3s ease;
    --font-primary: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-light);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 3rem;
    position: relative;
    font-weight: 800;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
}

.section-title.align-right {
    text-align: right;
}
.section-title.align-right::after {
    left: auto;
    right: 0;
    transform: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--color-primary), #8a6a51);
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(171, 136, 109, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(171, 136, 109, 0.4);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.full-banner-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.full-header-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

/* Abstract shapes for background */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(171,136,109,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(214,192,179,0.4) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: auto 0;
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 1s ease forwards;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.hero-text .highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: rgba(171, 136, 109, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.slogan {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-dark-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

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

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

.service-card:hover h3, 
.service-card:hover p,
.service-card:hover .service-icon {
    color: var(--color-white);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
    transition: var(--transition);
}

.service-card p {
    color: var(--color-dark-muted);
    transition: var(--transition);
}

/* Terms Section */
.terms {
    padding: 100px 0;
    background-color: var(--color-secondary);
    background-image: linear-gradient(135deg, rgba(214,192,179,0.3) 0%, rgba(228,224,225,0.8) 100%);
}

.terms-content {
    background-color: var(--color-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--color-dark);
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li i {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 3px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.contact-info p {
    font-size: 1.2rem;
    color: var(--color-dark-muted);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 1.3rem;
}

.contact-form-container {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--color-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 10px;
    background-color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(171, 136, 109, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 40px 0;
}

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

.footer-banner-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.full-footer-img {
    width: 100%;
    max-width: 1000px;
    max-height: 300px;
    object-fit: contain;
    display: inline-block;
}

/* Floating Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: var(--color-primary);
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Pulse Animation for WhatsApp */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .slogan {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .terms-content {
        padding: 30px 20px;
    }
    .floating-contact {
        bottom: 20px;
        left: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
