:root {
    --color-blue: #249cd1;
    --color-yellow: #eec21b;
    --color-gray: #c2c2bf;
    --color-white: #f4f4f5;
}

/* Packages Section Styling */
.social_packages {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--color-white);
}

.social_packages h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-blue);
}

.packages_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

.package_card {
    background-color: var(--color-white);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    border-top: 5px solid var(--color-yellow);
}

.package_card h3 {
    font-size: 1.8rem;
    color: var(--color-blue);
    overflow: hidden;
    margin-bottom: 20px;
}

.first-letter {
    font-size: 3rem;
    color: var(--color-yellow);
    font-weight: bold;
    float: left;
    line-height: 1;
    margin-right: 5px;
    font-family: 'Arial Black', sans-serif;
}

.package_card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.package_card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}

.package_card ul li::before {
    content: "\2713"; /* checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

.package_card ul li span {
    color: var(--color-gray);
}

.btn_package {
    display: block;
    text-align: center;
    padding: 12px 25px;
    background-color: var(--color-blue);
    color: var(--color-white);
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn_package:hover {
    background-color: var(--color-yellow);
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .packages_grid {
        grid-template-columns: 1fr;
    }
}
:root {
    --color-blue: #249cd1;
    --color-yellow: #eec21b;
    --color-gray: #c2c2bf;
    --color-white: #f4f4f5;
}

/* Contact Form */
#contactForm {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: var(--color-white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
}

#contactForm h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-blue);
}

/* Input wrapper with icon */
.input_icon_wrap {
    position: relative;
    margin-bottom: 20px;
}

.input_icon_wrap i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--color-gray);
}

/* Inputs & textarea */
.input_icon_wrap input,
.input_icon_wrap textarea {
    width: 100%;
    padding: 12px 15px 12px 40px; /* space for icon */
    border: 2px solid var(--color-gray);
    border-radius: 10px;
    font-size: 1rem;
    background-color: var(--color-white);
    color: #000;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input_icon_wrap input::placeholder,
.input_icon_wrap textarea::placeholder {
    color: var(--color-gray);
}

.input_icon_wrap input:focus,
.input_icon_wrap textarea:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 10px rgba(238, 194, 27, 0.3);
}

.input_icon_wrap textarea {
    resize: none;
    min-height: 120px;
}

/* Submit Button */
#contactForm button {
    width: 100%;
    padding: 14px;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#contactForm button:hover {
    background-color: var(--color-yellow);
    color: #000;
}


.sicgbor_btn_send {
    display: inline-block;
    padding: 14px 30px;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.sicgbor_btn_send:hover {
    background-color: var(--color-yellow);
    color: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}



