/* Golden Vision - Luxury Accounting Website Style */

/* General Styles */
:root {
    --primary-color: #c9a55c;
    --secondary-color: #102c54;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #111;
    --gray-color: #f9f9f9;
    --border-color: #e0e0e0;
    --gold-gradient: linear-gradient(135deg, #e6c96e 0%, #c9a55c 50%, #d4af37 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
    transform: skewX(-15deg);
}

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

.btn-primary {
    background: var(--gold-gradient);
    color: var(--light-color);
    box-shadow: 0 4px 20px rgba(201, 165, 92, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--light-color);
    box-shadow: 0 6px 25px rgba(16, 44, 84, 0.4);
    transform: translateY(-5px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    box-shadow: 0 4px 20px rgba(16, 44, 84, 0.2);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    box-shadow: 0 6px 25px rgba(201, 165, 92, 0.3);
    transform: translateY(-5px);
}

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

.section-header h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto;
    position: relative;
}

.divider:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.divider:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    padding: 15px 0;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 28px;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 800;
    letter-spacing: 1px;
}

.logo p {
    font-size: 12px;
    margin: 0;
    color: var(--secondary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--gold-gradient);
    color: var(--light-color);
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-color);
    margin-top: 80px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 44, 84, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease-out 0.5s both;
}

.hero-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 1.1s both;
}

/* Animated Backgrounds for Sections */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingParticles {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* About Section Enhanced */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.05;
    top: -150px;
    right: -150px;
    z-index: 0;
    animation: pulse 8s infinite ease-in-out;
}

.about:after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gold-gradient);
    opacity: 0.05;
    bottom: -150px;
    left: -150px;
    z-index: 0;
    animation: pulse 8s infinite ease-in-out 1s;
}

.about .particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.about .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatingParticles 15s infinite ease-in-out;
}

.about .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 15px;
    height: 15px;
    animation-duration: 25s;
}

.about .particle:nth-child(2) {
    top: 60%;
    left: 15%;
    width: 20px;
    height: 20px;
    animation-duration: 30s;
    animation-delay: 2s;
}

.about .particle:nth-child(3) {
    top: 30%;
    left: 80%;
    width: 25px;
    height: 25px;
    animation-duration: 28s;
    animation-delay: 5s;
}

.about .particle:nth-child(4) {
    top: 70%;
    left: 70%;
    width: 15px;
    height: 15px;
    animation-duration: 22s;
    animation-delay: 7s;
}

.about .particle:nth-child(5) {
    top: 40%;
    left: 40%;
    width: 10px;
    height: 10px;
    animation-duration: 18s;
    animation-delay: 1s;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.gold-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    padding-right: 15px;
}

.gold-title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    background-color: var(--gray-color);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    margin-left: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.feature-text {
    font-weight: 600;
    color: var(--secondary-color);
}

.about-text ul {
    margin-bottom: 20px;
    padding-right: 20px;
}

.about-text ul li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 10px;
}

.about-text ul li:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--primary-color);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.vision-mission {
    display: flex;
    gap: 30px;
}

.vision, .mission {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    background-color: var(--gray-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision:hover, .mission:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.vision:before, .mission:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gold-gradient);
}

.vision .icon, .mission .icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision h3, .mission h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Why Choose Us Section Enhanced */
.why-us {
    padding: 100px 0;
    background-color: var(--gray-color);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 60px 0;
    overflow: hidden;
}

.why-us:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.why-us .animated-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(201, 165, 92, 0.03) 0%, 
        rgba(16, 44, 84, 0.03) 25%, 
        rgba(201, 165, 92, 0.03) 50%, 
        rgba(16, 44, 84, 0.03) 75%, 
        rgba(201, 165, 92, 0.03) 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    z-index: 0;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.why-choose-text {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-choose-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.why-choose-text p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-primary {
    background-color: var(--light-color);
}

.feature-secondary {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.feature-secondary h3 {
    color: var(--light-color);
}

.feature:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.feature .icon {
    width: 80px;
    height: 80px;
    background: var(--gray-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-secondary .icon {
    background: rgba(255, 255, 255, 0.1);
}

.feature:hover .icon {
    background: var(--gold-gradient);
    color: var(--light-color);
    box-shadow: 0 10px 20px rgba(201, 165, 92, 0.3);
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Section Enhanced */
.services {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.02;
    z-index: 0;
}

.services .animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(201, 165, 92, 0.03) 1px, transparent 1px),
        linear-gradient(to right, rgba(201, 165, 92, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: pulse 10s infinite ease-in-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    color: var(--light-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.3);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-content ul {
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-content ul li {
    position: relative;
    padding-right: 25px;
    margin-bottom: 10px;
    font-size: 15px;
}

.service-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--primary-color);
}

/* Testimonials Section Enhanced */
.testimonials {
    padding: 120px 0;
    background: url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--light-color);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    margin: 60px 0;
    z-index: 1;
    overflow: hidden;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 44, 84, 0.85);
    z-index: 0;
}

.testimonials .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.testimonials .section-header h2, 
.testimonials .section-header p {
    color: var(--light-color);
}

.testimonials-slider {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 20px;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s ease;
}

.slick-active .testimonial {
    opacity: 1;
    transform: scale(1);
}

.quote {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.quote:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
}

.quote i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.quote p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.client {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.quote:hover .client-image {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.3);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light-color);
}

.client-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

/* Slick customization */
.slick-dots {
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: var(--primary-color);
    transform: scale(1.2);
}

.slick-prev, 
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 16px;
}

.slick-prev:hover, 
.slick-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slick-prev {
    right: -60px;
}

.slick-next {
    left: -60px;
}

@media (max-width: 992px) {
    .slick-prev {
        right: 10px;
    }
    .slick-next {
        left: 10px;
    }
}

/* Contact Section Enhanced */
.contact {
    padding: 100px 0;
    background: url('../images/contact-bg.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(16, 44, 84, 0.9), rgba(16, 44, 84, 0.8));
    z-index: 0;
}

.contact .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.contact .floating-shape {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
    animation: floatingParticles 20s infinite ease-in-out;
}

.contact .floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-duration: 20s;
}

.contact .floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.contact .floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.contact .floating-shape:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 5%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 40px;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-item:hover .icon {
    background: var(--gold-gradient);
    color: var(--light-color);
    box-shadow: 0 10px 20px rgba(201, 165, 92, 0.3);
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light-color);
}

.info-item p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    font-size: 16px;
    color: var(--light-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
    border-radius: 50%;
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
}

.social-links a:hover:before {
    opacity: 1;
    transform: scale(1);
}

.contact-form {
    flex: 1.5;
    padding: 40px;
    background-color: var(--light-color);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: var(--gray-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(201, 165, 92, 0.25);
    outline: none;
    background-color: var(--light-color);
    transform: translateY(-3px);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo, 
.footer-links, 
.footer-services, 
.footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    font-size: 28px;
    color: var(--light-color);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--primary-color);
    font-size: 14px;
}

.footer-links h3, 
.footer-services h3, 
.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after, 
.footer-services h3:after, 
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li, 
.footer-services ul li {
    margin-bottom: 15px;
}

.footer-links ul li a, 
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

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

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

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

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

.copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 992px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .about-content,
    .service-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .service-image {
        margin-bottom: 30px;
    }
    
    .service-image img {
        height: 300px;
    }
    
    .vision-mission {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .why-choose-container {
        grid-template-columns: 1fr;
    }
    
    .why-us, .testimonials {
        clip-path: none;
        margin: 0;
    }
    
    .contact-card {
        flex-direction: column;
    }
    
    .contact-form, .contact-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        overflow-y: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    nav.active {
        left: 0;
    }
    
    nav:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(201, 165, 92, 0.05) 0%, rgba(16, 44, 84, 0.05) 100%);
        z-index: -1;
    }
    
    nav ul {
        flex-direction: column;
        padding: 40px 20px;
        width: 100%;
        text-align: center;
    }
    
    nav ul li {
        margin-right: 0;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        transition-delay: calc(0.1s * var(--i));
    }
    
    nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }
    
    nav ul li a:after {
        bottom: 5px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .feature {
        padding: 30px 20px;
    }
}

/* Light header for dark backgrounds */
.light-header h2 {
    color: var(--light-color);
} 