/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL VARIABLES & RESET STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
:root {
    --ph-blue: #0038A8;
    --ph-red: #CE1126;
    --ph-yellow: #FCD116;
    --ph-white: #FFFFFF;
    --ph-light-blue: #E6EEF8;
    --ph-light-yellow: #FFF9E6;
    --dark: #1A1A2E;
    --gray: #6C757D;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--ph-light-blue);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL VARIABLES & RESET STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER & NAVIGATION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
header {
    background: white;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 2rem;
    color: var(--ph-yellow);
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.logo-text span {
    color: var(--ph-yellow);
}

.desktop-nav {
    display: flex;
    align-items: center;
    margin: 0 20px;
    flex-grow: 1;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.desktop-nav a {
    color: #0038A8;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    font-size: 0.95rem;
    white-space: nowrap;
    display: inline-block;
}

.desktop-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--ph-yellow);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--ph-yellow);
}

.desktop-nav a:hover:after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--ph-blue) 0%, #00267a 100%);
    z-index: 1002;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.mobile-nav-logo span {
    color: var(--ph-yellow);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav ul {
    list-style: none;
    width: 100%;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
    width: 100%;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 15px;
    display: block;
    border-radius: 5px;
    transition: var(--transition);
    width: 100%;
    white-space: normal;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ph-yellow);
    transform: translateX(5px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.flag {
    width: 40px;
    height: 25px;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-image: url('https://img.freepik.com/free-vector/illustration-philippinesflag_53876-27126.jpg');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.contact-btn {
    background: var(--ph-yellow);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HEADER & NAVIGATION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 56, 168, 0.85), rgba(206, 17, 38, 0.8)), 
                url('img/Banner_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--ph-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 56, 168, 0.3);
}

.btn-primary:hover {
    background: #00267a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 56, 168, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! HERO SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.about {
    padding: 100px 0;
    background: linear-gradient(rgba(230, 238, 248, 0.9), rgba(230, 238, 248, 0.9)), 
                url('https://img.freepik.com/free-photo/philippines-flag-wrinkled-dark-background-3d-render_1379-615.jpg?semt=ais_hybrid&w=740&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--ph-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--ph-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(30px);
}

.about-image.animate {
    animation: fadeRight 1s forwards 0.5s;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.individual-products {
    padding: 100px 0;
    background: var(--ph-light-blue);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--ph-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--ph-red);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.product-card.animate {
    animation: fadeUp 0.8s forwards;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 56, 168, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

.product-category {
    background: var(--ph-yellow);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--ph-blue);
    margin-bottom: 10px;
}

.product-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.view-details-btn, .inquire-btn {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

.view-details-btn {
    background: var(--ph-blue);
    color: white;
}

.view-details-btn:hover {
    background: #00267a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 56, 168, 0.3);
}

.inquire-btn {
    background: var(--ph-red);
    color: white;
}

.inquire-btn:hover {
    background: #a80d1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(206, 17, 38, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! PREMIUM PRODUCT CARD STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! WHY CHOOSE US SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('https://img.freepik.com/free-photo/asian-middle-aged-farmer-man-wearing-straw-hat-write-clipboard-rice-field-with-smile-keep-data_1150-53976.jpg?semt=ais_hybrid&w=740&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    animation: fadeUp 0.8s forwards;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--ph-light-blue);
    color: var(--ph-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--ph-blue);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--ph-blue);
}

.feature-card p {
    color: var(--gray);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! WHY CHOOSE US SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! TESTIMONIALS SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.testimonials {
    padding: 100px 0;
    background: var(--ph-light-yellow);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial.animate {
    animation: fadeUp 0.8s forwards;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--ph-blue);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! TESTIMONIALS SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL PRESENCE SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.global-presence {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ph-light-blue) 0%, #d0dff0 100%);
    position: relative;
}

.map-container {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.world-map {
    width: 100%;
    height: 100%;
    background-image: url('https://img.freepik.com/premium-vector/highly-detailed-world-map-with-labeling-grayscale-vector-illustration_1023925-236.jpg?semt=ais_incoming&w=740&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.location-marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--ph-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(206, 17, 38, 0.4);
}

.location-marker:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--ph-red);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.location-marker:hover {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 6px 15px rgba(206, 17, 38, 0.6);
    z-index: 3;
}

.location-marker i {
    color: white;
    font-size: 0.8rem;
    z-index: 3;
    position: relative;
}

.location-info {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 200px;
    opacity: 0;
    transition: var(--transition);
    z-index: 10;
    pointer-events: none;
}

.location-info h4 {
    color: var(--ph-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.location-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.global-offices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.office-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.office-card i {
    font-size: 2rem;
    color: var(--ph-blue);
    margin-bottom: 15px;
}

.office-card h4 {
    color: var(--ph-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.office-card p {
    color: var(--gray);
    font-size: 0.9rem;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! GLOBAL PRESENCE SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
.contact {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 56, 168, 0.85), rgba(206, 17, 38, 0.7)), 
                url('https://img.freepik.com/free-photo/ship-with-containers-by-river_1112-101.jpg?semt=ais_hybrid&w=1800&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
}

.contact .section-title h2,
.contact .section-title p {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: rgba(26, 26, 46, 0.85);
    color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-30px);
    backdrop-filter: blur(10px);
}

.contact-info-card.animate {
    animation: fadeLeft 1s forwards 0.5s;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--ph-yellow);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ph-yellow);
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(30px);
}

.contact-form.animate {
    animation: fadeRight 1s forwards 0.5s;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--ph-blue);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--ph-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 56, 168, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--ph-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
}

.submit-btn:hover {
    background: #00267a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 56, 168, 0.3);
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! CONTACT SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
footer {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)), 
                url('https://img.freepik.com/premium-photo/beautiful-national-state-flag-philippines-blue-sky_337817-4365.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--ph-yellow);
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--ph-blue);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--ph-yellow);
    bottom: 0;
    left: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--ph-yellow);
    padding-left: 5px;
}

.footer-links i {
    margin-right: 10px;
    color: var(--ph-yellow);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! FOOTER SECTION STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ANIMATIONS & RESPONSIVE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    70% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .desktop-nav ul { gap: 1rem; }
    .desktop-nav a { font-size: 0.9rem; }
    .logo-text { font-size: 1.3rem; }
}

@media (max-width: 1100px) {
    .desktop-nav ul { gap: 0.8rem; }
    .desktop-nav a { font-size: 0.85rem; }
    .contact-btn { padding: 6px 12px; font-size: 0.9rem; }
    .flag { width: 35px; height: 22px; }
}

@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .mobile-nav-toggle { display: flex; }
    .contact-info .contact-btn { display: none; }
    .hero { margin-top: 70px; }
    .hero, .why-choose-us, .about, .contact, footer { background-attachment: scroll !important; }
}

@media (max-width: 992px) {
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 30px; }
    .hero h1 { font-size: 2.8rem; }
    .about-image, .contact-info-card, .contact-form { transform: translateY(30px); }
    .about-image.animate, .contact-info-card.animate, .contact-form.animate { animation: fadeUp 1s forwards 0.5s; }
    .contact-info-card, .contact-form { padding: 30px; }
    .map-container { height: 400px; }
}

@media (max-width: 768px) {
    .header-content { flex-direction: row; align-items: center; justify-content: space-between; }
    .logo-text { font-size: 1.3rem; }
    .hero { height: 80vh; min-height: 500px; margin-top: 70px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
    .btn { width: 200px; text-align: center; }
    .about-features { grid-template-columns: 1fr; gap: 15px; }
    .product-buttons { flex-direction: column; gap: 8px; }
    .view-details-btn, .inquire-btn { width: 100%; }
    .contact-info { gap: 10px; }
    .contact { padding: 60px 0; }
    .contact-info-card, .contact-form { padding: 25px; }
    .contact-details { margin-top: 20px; }
    .contact-item { margin-bottom: 15px; flex-direction: row; align-items: flex-start; }
    .contact-item i { width: 35px; height: 35px; font-size: 0.9rem; }
    .contact-info-card h3 { font-size: 1.5rem; }
    .contact-form h3 { font-size: 1.5rem; }
    .form-group { margin-bottom: 15px; }
    .form-control { padding: 10px 12px; font-size: 0.95rem; }
    .submit-btn { padding: 12px 20px; font-size: 1rem; }
    footer { padding: 40px 0 20px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-links h4 { text-align: center; }
    .footer-links h4:after { left: 50%; transform: translateX(-50%); }
    .footer-links ul { padding: 0; }
    .footer-links li { text-align: center; margin-bottom: 8px; }
    .footer-links a { display: inline-block; }
    .footer-about p { text-align: center; }
    .social-links { justify-content: center; }
    .mobile-nav { width: 100%; }
    .map-container { height: 350px; }
    .global-offices { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 576px) {
    .product-grid, .features-grid { grid-template-columns: 1fr; }
    .section-title h2 { font-size: 2rem; }
    .contact-info-card, .contact-form { padding: 20px; }
    .logo-text { font-size: 1.1rem; }
    .logo-icon { font-size: 1.5rem; }
    .mobile-nav { width: 100%; }
    .contact-item { flex-direction: column; align-items: flex-start; gap: 8px; }
    .contact-item i { margin-top: 0; }
    footer { padding: 30px 0 15px; }
    .footer-logo { font-size: 1.5rem; }
    .footer-links h4 { font-size: 1.1rem; margin-bottom: 15px; }
    .footer-links ul { font-size: 0.9rem; }
    .copyright { font-size: 0.8rem; padding-top: 15px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; }
    .map-container { height: 300px; }
}

@media (max-width: 400px) {
    .contact-info-card, .contact-form { padding: 15px; }
    .form-control { font-size: 0.9rem; padding: 8px 10px; }
    .submit-btn { padding: 10px 15px; font-size: 0.9rem; }
    footer { padding: 25px 0 10px; }
    .footer-logo { font-size: 1.3rem; }
    .social-links a { width: 35px; height: 35px; font-size: 0.9rem; }
    .logo-text { font-size: 1rem; }
    .logo-icon { font-size: 1.3rem; }
    .map-container { height: 250px; }
}
/*AAAAAAAAAAAAAAAAAAAAAAA!!! ANIMATIONS & RESPONSIVE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/


/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.about-banner {
    background: linear-gradient(135deg, #0B132B 0%, #1B2A4A 50%, #0F3460 100%);
    position: relative;
    min-height: auto;
    padding: 5rem 0;
    margin-top: 74px;
    overflow: hidden;
}

.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(252, 209, 22, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ph-yellow), var(--ph-red), var(--ph-blue), var(--ph-yellow));
}

.about-banner-container {
    position: relative;
    z-index: 2;
}

.about-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-banner-badge {
    display: inline-block;
    background: rgba(252, 209, 22, 0.15);
    color: var(--ph-yellow);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(252, 209, 22, 0.3);
}

.about-banner-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.about-banner-title span {
    color: var(--ph-yellow);
    position: relative;
    display: inline-block;
}

.about-banner-title span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(252, 209, 22, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.about-banner-text {
    max-width: 750px;
    margin: 0 auto 2rem auto;
}

.about-banner-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-banner-description strong {
    color: var(--ph-yellow);
    font-weight: 600;
}

.about-banner-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ph-yellow);
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.about-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.about-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.about-btn-primary {
    background: var(--ph-yellow);
    color: var(--dark);
    border: 2px solid var(--ph-yellow);
}

.about-btn-primary:hover {
    background: transparent;
    color: var(--ph-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.about-btn-outline:hover {
    background: white;
    color: var(--ph-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-banner {
        padding: 3.5rem 0;
        margin-top: 70px;
    }
    
    .about-banner-title {
        font-size: 2.4rem;
    }
    
    .about-banner-description {
        font-size: 0.95rem;
    }
    
    .about-banner-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 2.5rem 0;
        margin-top: 65px;
    }
    
    .about-banner-title {
        font-size: 1.8rem;
    }
    
    .about-banner-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }
    
    .about-banner-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-banner-stats {
        gap: 1rem;
        margin: 1.8rem 0;
        padding: 1rem 0;
    }
    
    .stat-item {
        min-width: 75px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .about-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .about-banner-buttons {
        gap: 0.8rem;
    }
}

@media (max-width: 576px) {
    .about-banner {
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .about-banner-title {
        font-size: 1.5rem;
    }
    
    .about-banner-badge {
        font-size: 0.6rem;
        margin-bottom: 1rem;
    }
    
    .about-banner-description {
        font-size: 0.85rem;
    }
    
    .about-banner-stats {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .stat-item {
        min-width: 65px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .about-banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }
    
    .about-btn {
        width: 200px;
        text-align: center;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .about-banner-title {
        font-size: 1.3rem;
    }
    
    .stat-item {
        min-width: 55px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! ABOUT US BANNER STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/



/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT DETAILS PAGE STYLES STARTS !!!AAAAAAAAAAAAAAAAAAA*/

.product-details-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Side Styles */
.product-details-left {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-details-breadcrumb {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.product-details-breadcrumb a {
    color: var(--ph-blue);
    text-decoration: none;
    transition: var(--transition);
}

.product-details-breadcrumb a:hover {
    color: var(--ph-red);
}

.product-details-title {
    font-size: 2.5rem;
    color: var(--ph-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.product-country-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ph-light-blue);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.country-flag {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

.product-country-badge span {
    font-weight: 600;
    color: var(--ph-blue);
}

.product-details-description h3,
.product-specs h3,
.import-info h3,
.export-info h3 {
    font-size: 1.3rem;
    color: var(--ph-blue);
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
}

.product-details-description p {
    color: var(--gray);
    line-height: 1.7;
}

.specs-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.specs-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--dark);
}

.specs-list li strong {
    color: var(--ph-blue);
    min-width: 120px;
    display: inline-block;
}

.product-import-export {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.import-info, .export-info {
    background: var(--ph-light-blue);
    padding: 20px;
    border-radius: 15px;
}

.import-info h3 i, .export-info h3 i {
    color: var(--ph-red);
    margin-right: 10px;
}

.import-info ul, .export-info ul {
    list-style: none;
    margin-top: 10px;
}

.import-info li, .export-info li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.import-info li:last-child, .export-info li:last-child {
    border-bottom: none;
}

.import-info li strong, .export-info li strong {
    color: var(--ph-blue);
    min-width: 130px;
    display: inline-block;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.product-inquire-btn {
    background: var(--ph-red);
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-inquire-btn:hover {
    background: #a80d1e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(206, 17, 38, 0.3);
}

.product-back-btn {
    background: transparent;
    color: var(--ph-blue);
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--ph-blue);
}

.product-back-btn:hover {
    background: var(--ph-blue);
    color: white;
    transform: translateY(-3px);
}

/* Right Side Styles */
.product-details-right {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active {
    border-color: var(--ph-blue);
    box-shadow: 0 4px 12px rgba(0, 56, 168, 0.2);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--ph-red);
}

.product-country-info {
    background: linear-gradient(135deg, var(--ph-light-blue), white);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid var(--ph-red);
}

.country-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.country-card i {
    font-size: 2rem;
    color: var(--ph-red);
}

.country-card h4 {
    color: var(--ph-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.country-card p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-details-right {
        position: static;
    }
    
    .product-details-title {
        font-size: 2rem;
    }
    
    .specs-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-details-page {
        padding: 100px 0 50px;
    }
    
    .product-details-left {
        padding: 20px;
    }
    
    .product-import-export {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-inquire-btn, .product-back-btn {
        text-align: center;
        justify-content: center;
    }
    
    .product-details-title {
        font-size: 1.6rem;
    }
    
    .specs-list li strong {
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .product-thumbnails {
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .country-card {
        flex-direction: column;
        text-align: center;
    }
    
    .country-card i {
        margin: 0 auto;
    }
}

/*AAAAAAAAAAAAAAAAAAAAAAA!!! PRODUCT DETAILS PAGE STYLES ENDS !!!AAAAAAAAAAAAAAAAAAAAA*/